Parent Directory
|
Revision Log
Revision 1.1 - (view) (download)
1 : | paczian | 1.1 | # |
2 : | # Copyright (c) 2003-2006 University of Chicago and Fellowship | ||
3 : | # for Interpretations of Genomes. All Rights Reserved. | ||
4 : | # | ||
5 : | # This file is part of the SEED Toolkit. | ||
6 : | # | ||
7 : | # The SEED Toolkit is free software. You can redistribute | ||
8 : | # it and/or modify it under the terms of the SEED Toolkit | ||
9 : | # Public License. | ||
10 : | # | ||
11 : | # You should have received a copy of the SEED Toolkit Public License | ||
12 : | # along with this program; if not write to the University of Chicago | ||
13 : | # at info@ci.uchicago.edu or the Fellowship for Interpretation of | ||
14 : | # Genomes at veronika@thefig.info or download a copy from | ||
15 : | # http://www.theseed.org/LICENSE.TXT. | ||
16 : | # | ||
17 : | |||
18 : | # | ||
19 : | # seed_running_perl.fragement is the piece of perl code that | ||
20 : | # checks to see if the seed server is up, and prints a message and returns | ||
21 : | # if it is not. | ||
22 : | # | ||
23 : | SEED_RUNNING_PERL = seed_running_perl.fragment | ||
24 : | |||
25 : | PERLCGISCRIPTS := $(subst .pl,,$(wildcard *.cgi)) | ||
26 : | |||
27 : | PERL_LIB = $(wildcard *.pm) \ | ||
28 : | $(wildcard WebPage/*.pm) \ | ||
29 : | $(wildcard GBBergeyDB/*.pm) | ||
30 : | |||
31 : | WEBPAGES := $(wildcard *.tmpl) $(wildcard html/*.html) $(wildcard html/*.png) $(wildcard html/*.gif) \ | ||
32 : | $(wildcard html/*.css) $(wildcard html/*.jpg) $(wildcard html/*.js) | ||
33 : | |||
34 : | INST_PERL_LIB = $(foreach var, $(PERL_LIB), $(libdir)/$(PKGNAME)/$(var)) | ||
35 : | PERL_BIN = $(subst .pl,, $(PERL_BIN_SRC)) | ||
36 : | |||
37 : | all: lib | ||
38 : | |||
39 : | show: | ||
40 : | @echo cgis $(foreach var, $(PERLCGISCRIPTS), $(cgidir)/$(var)) | ||
41 : | @echo top $(TOPDIR) | ||
42 : | @echo pkg $(PKGNAME) | ||
43 : | @echo toolhdr $(TOOL_HDR) | ||
44 : | |||
45 : | bin: | ||
46 : | |||
47 : | lib: $(foreach var, $(PERLCGISCRIPTS), $(cgidir)/$(var)) copy_htaccess $(INST_PERL_LIB) $(foreach var, $(WEBPAGES), $(cgidir)/Html/$(var)) | ||
48 : | |||
49 : | htaccess_src = $(RTROOT)/config/all.htaccess | ||
50 : | htaccess_dst = $(cgidir)/.htaccess | ||
51 : | |||
52 : | copy_htaccess: force | ||
53 : | if test -f $(htaccess_src); then \ | ||
54 : | cp $(htaccess_src) $(htaccess_dst) ; \ | ||
55 : | fi | ||
56 : | |||
57 : | force: | ||
58 : | |||
59 : | schematools: | ||
60 : | stDeclFiles: | ||
61 : | stGeneratedFiles: | ||
62 : | |||
63 : | |||
64 : | test: | ||
65 : | |||
66 : | clean: | ||
67 : | |||
68 : | $(cgidir)/%: $(TOPDIR)/$(PKGNAME)/% $(TOOL_HDR) | ||
69 : | ( cat $(TOOL_HDR) $< > $@; chmod +x $@ ) | ||
70 : | |||
71 : | $(cgidir)/Html/%: $(TOPDIR)/$(PKGNAME)/% | ||
72 : | cp -p $< $(cgidir)/Html/. | ||
73 : | |||
74 : | # | ||
75 : | # We have a config problem at the moment. I do not want to depend | ||
76 : | # upon explicit calls to other packages, as done here nor do I want | ||
77 : | # to assume that package was built first. For now, we live with this. | ||
78 : | |||
79 : | #$(TOOL_HDR): | ||
80 : | # cd $(workdir); $(TOPDIR)/FigCommon/configure-env $(RTARCH) $(TOPDIR) | ||
81 : | |||
82 : | |||
83 : | # | ||
84 : | # Since our lib files have directories, need to create the target | ||
85 : | # directory if it doesn't yet exist. | ||
86 : | # | ||
87 : | $(libdir)/$(PKGNAME)/%.pm: $(TOPDIR)/$(PKGNAME)/%.pm | ||
88 : | tgt_dir=`dirname $@`; \ | ||
89 : | if [ ! -d $$tgt_dir ] ; then \ | ||
90 : | mkdir $$tgt_dir; \ | ||
91 : | fi | ||
92 : | cp -p $< $@ | ||
93 : | |||
94 : | $(bindir)/%: $(TOPDIR)/$(PKGNAME)/%.pl $(TOOL_HDR) | ||
95 : | ( cat $(TOOL_HDR) $< > $@; chmod +x $@ ) | ||
96 : |
MCS Webmaster | ViewVC Help |
Powered by ViewVC 1.0.3 |