Added support for g95
[PsN.git] / Makefile
blob7149eb1176309bdd4dc74d794532013e1eabfc17
1 DIAGRAMS=llp.dia tool.dia model.dia output.dia data.dia xrsl_file.dia fcon.dia nonmem.dia moshog_client.dia
3 DIAGRAMS=$(addprefix diagrams/,$(DIAGRAMS))
5 BIN=bootstrap cdd execute llp scm
7 HTML_STUBS=_synopsis.php _description.php _options.php _examples.php
9 DOCUMENTS=$(foreach pre,$(BIN),$(foreach suff,$(HTML_STUBS),$(addprefix html/$(pre),$(suff))))
11 DIA2CODE=dia2code
12 FILLSCRIPT=perl ./bin/fill_diacode.pl
13 DIRPM=libgen/
14 DIRSUBS=lib/
15 PERLDIRS=-I/home/pontus/perl
16 LIBFILES=debug.pm \
17 ui.pm \
18 status_bar.pm \
19 nonmem.pm \
20 moshog_client.pm \
21 file.pm \
22 data/individual.pm \
23 data.pm \
24 output/problem/subproblem.pm \
25 output/problem.pm \
26 output.pm \
27 grid/nordugrid/xrsl_file.pm \
28 fcon.pm \
29 table_file.pm \
30 extra_data.pm \
31 model/problem/record/option.pm \
32 model/problem/record/init_option.pm \
33 model/problem/record/theta_option.pm \
34 model/problem/record.pm \
35 model/problem/code_record.pm \
36 model/problem/init_record.pm \
37 model/problem/abbreviated.pm \
38 model/problem/aes.pm \
39 model/problem/aesinit.pm \
40 model/problem/contr.pm \
41 model/problem/covariance.pm \
42 model/problem/data.pm \
43 model/problem/des.pm \
44 model/problem/error.pm \
45 model/problem/estimation.pm \
46 model/problem/infn.pm \
47 model/problem/input.pm \
48 model/problem/msfi.pm \
49 model/problem/mix.pm \
50 model/problem/model.pm \
51 model/problem/nonparametric.pm \
52 model/problem/omega.pm \
53 model/problem/pk.pm \
54 model/problem/problem.pm \
55 model/problem/pred.pm \
56 model/problem/scatter.pm \
57 model/problem/sigma.pm \
58 model/problem/simulation.pm \
59 model/problem/subroutine.pm \
60 model/problem/table.pm \
61 model/problem/theta.pm \
62 model/problem/tol.pm \
63 model/cwres_module.pm \
64 model/mirror_plot_module.pm \
65 model/iofv_module.pm \
66 model/shrinkage_module.pm \
67 model/nonparametric_module.pm \
68 model/problem.pm \
69 model.pm \
70 tool.pm \
71 tool/modelfit.pm \
72 tool/llp.pm \
73 tool/cdd.pm \
74 tool/cdd/jackknife.pm \
75 tool/mc.pm \
76 tool/bootstrap.pm \
77 tool/scm/config_file.pm \
78 tool/scm.pm \
79 tool/xv_step.pm \
80 tool/xv.pm \
82 PERLFILES=$(addprefix lib/,$(LIBFILES))
84 RELFILES=$(addprefix PsN-Source/lib/,$(LIBFILES)) \
85 $(addprefix PsN-Source/, \
86 lib/PsN_template.pm \
87 lib/common_options.pm \
88 lib/psn.conf \
89 lib/OSspecific.pm \
90 lib/hotkey.pm \
91 lib/ext/Math/SigFigs.pm \
92 lib/ext/Math/MatrixReal.pm \
93 lib/ext/Statistics/Distributions.pm \
94 lib/ext/Parallel/ForkManager.pm \
95 lib/ext/Config/Tiny.pm \
96 lib/ext/Color/Output.pm \
97 lib/ext/File/HomeDir.pm \
98 lib/ext/IPC/Run3.pm \
99 lib/matlab/bca.m \
100 lib/matlab/histograms.m \
101 lib/matlab/profiles.m \
102 lib/R-scripts/llp.R \
103 lib/R-scripts/cdd.R \
104 lib/R-scripts/bootstrap.R \
105 bin/execute \
106 bin/cdd \
107 bin/mc_cdd \
108 bin/mcs \
109 bin/llp \
110 bin/scm \
111 bin/bootstrap \
112 bin/sumo \
113 bin/single_valued_columns \
114 bin/check_termination \
115 bin/create_extra_data_model \
116 bin/create_cont_model \
117 bin/create_cont_data \
118 bin/create_subsets \
119 bin/unwrap_data \
120 bin/data_stats \
121 bin/gam42toconf \
122 bin/se_of_eta \
123 bin/update_inits \
124 setup.pl \
125 README.txt )
127 GENFILES=$(addprefix libgen/,$(LIBFILES))
129 all: libgen $(PERLFILES)
131 .PRECIOUS: $(GENFILES)
133 libgen:
134 @ mkdir -p libgen
136 lib/%.pm: libgen/%.pm lib/%_subs.pm
137 @ cp libgen/$*.pm libgen/$*_temp.pm
138 @ $(FILLSCRIPT) libgen/$*_temp.pm lib/$*_subs.pm
139 @ cp libgen/$*_temp.pm $@
140 @ perl $(PERLDIRS) -I./$(@D) -I./lib -c $@ -W -t -T|| (rm $@ && false)
142 .PHONY : clean
144 clean:
145 @-rm -rf $(PERLFILES) $(DOCUMENTS) libgen PsN-Source
147 libgen/debug.pm : diagrams/debug.dia
148 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/debug.dia
150 libgen/ui.pm : diagrams/ui.dia
151 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/ui.dia
153 libgen/status_bar.pm : diagrams/status_bar.dia
154 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/status_bar.dia
156 libgen/nonmem.pm : diagrams/nonmem.dia
157 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/nonmem.dia
159 libgen/moshog_client.pm : diagrams/moshog_client.dia
160 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/moshog_client.dia
162 libgen/file.pm : diagrams/file.dia
163 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/file.dia
165 libgen/tool/modelfit.pm : diagrams/modelfit.dia
166 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/modelfit.dia
168 libgen/tool/llp.pm : diagrams/llp.dia
169 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/llp.dia
171 libgen/tool/cdd/jackknife.pm libgen/tool/cdd.pm : diagrams/cdd.dia
172 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/cdd.dia
174 libgen/tool/mc.pm : diagrams/mc.dia
175 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/mc.dia
177 libgen/tool/bootstrap.pm : diagrams/bootstrap.dia
178 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/bootstrap.dia
180 libgen/tool/scm/config_file.pm libgen/tool/scm.pm : diagrams/scm.dia
181 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/scm.dia
183 libgen/tool/xv_step.pm libgen/tool/xv.pm : diagrams/xv.dia
184 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/xv.dia
186 libgen/tool.pm : diagrams/tool.dia
187 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/tool.dia
189 libgen/table_file.pm libgen/extra_data.pm libgen/model%.pm : diagrams/model.dia
190 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/model.dia
192 libgen/output%.pm : diagrams/output.dia
193 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/output.dia
195 libgen/data%.pm : diagrams/data.dia
196 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/data.dia
198 libgen/grid/nordugrid/xrsl_file.pm : diagrams/xrsl_file.dia
199 $(DIA2CODE) -t perl -d $(DIRPM) diagrams/xrsl_file.dia
201 libgen/fcon.pm : diagrams/fcon.dia
202 $(DIA2CODE) -nd -t perl -d $(DIRPM) diagrams/fcon.dia
204 documents: $(DOCUMENTS)
206 $(addprefix html/bootstrap,$(HTML_STUBS)) : bin/bootstrap lib/common_options.pm
207 perl $< --help --html
209 $(addprefix html/cdd,$(HTML_STUBS)) : bin/cdd lib/common_options.pm
210 perl $< --help --html
212 $(addprefix html/execute,$(HTML_STUBS)) : bin/execute lib/common_options.pm
213 perl $< --help --html
215 $(addprefix html/llp,$(HTML_STUBS)) : bin/llp lib/common_options.pm
216 perl $< --help --html
218 $(addprefix html/scm,$(HTML_STUBS)) : bin/scm lib/common_options.pm
219 perl $< --help --html
222 release: libgen rel_dir $(RELFILES) documents
223 @ cp -ar modules/Math-Random \
224 modules/Math-Random-Win \
225 modules/Storable PsN-Source/modules
226 @ zip -r PsN-Source PsN-Source/
227 @ tar czf PsN-Source.tar.gz PsN-Source/
229 PsN-Source/setup.pl: bin/setup.pl
230 @ cp bin/setup.pl $@
232 PsN-Source/lib/matlab/% : matlab/%
233 @ cp matlab/$* $@
235 PsN-Source/lib/R-scripts/% : R-scripts/%
236 @ cp R-scripts/$* $@
238 PsN-Source/%: %
239 @ cp -ar $* $@
241 rel_dir:
242 @mkdir -p $(sort $(dir $(RELFILES))) PsN-Source/modules