ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/make/Makefile.in
Revision: 1012
Committed: Wed Jul 26 21:00:44 2006 UTC (19 years ago) by gezelter
Original Path: trunk/make/Makefile.in
File size: 28044 byte(s)
Log Message:
added install target for scripts

File Contents

# Content
1 #---------------------------------------------------------------------------
2 # (C) 1999 - 2002 Jacob Dreyer - Geotechnical Software Services
3 # jacob.dreyer@geosoft.no - http://geosoft.no
4 #
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston,
18 # MA 02111-1307, USA.
19 #---------------------------------------------------------------------------
20 #---------------------------------------------------------------------------
21 #
22 # GnuMake crash course:
23 #
24 # target : depends
25 # rule
26 #
27 # target - the parameter given to make. I.e. what to build
28 # depends - file or other targets target depends on
29 # rule - how to create target (note that rule is preceeded by a TAB char)
30 # $(VAR) - environment variable or variable defined above
31 # $@ - Current target
32 # $* - Current target without extension
33 # $< - Current dependency
34 #
35 #---------------------------------------------------------------------------
36 IS_UNIX=1
37
38 #packages containing libraries
39 PackageLibs = \
40 utils \
41 visitors \
42 math \
43 types \
44 primitives \
45 UseTheForce/DarkSide \
46 UseTheForce \
47 brains \
48 io \
49 integrators\
50 constraints \
51 minimizers \
52 selection \
53 restraints \
54 lattice \
55 hydrodynamics \
56 openbabel\
57 antlr\
58 mdParser
59 #packages containing applications
60 Applications = \
61 applications/oopse \
62 applications/dump2Xyz \
63 applications/staticProps \
64 applications/dynamicProps \
65 applications/simpleBuilder \
66 applications/randomBuilder \
67 applications/nanoRodBuilder \
68 applications/nanoparticleBuilder \
69 applications/atom2mdin \
70 applications/hydrodynamics \
71 applications/utilities
72
73
74 Samples = \
75 samples/alkane \
76 samples/argon \
77 samples/cutoff \
78 samples/dipole \
79 samples/gbljtest \
80 samples/lipid \
81 samples/metals/EAM \
82 samples/metals/EAM/nanoparticle \
83 samples/metals/EAM/nanorod \
84 samples/metals/Sutton-Chen \
85 samples/minimizer \
86 samples/shape \
87 samples/thermoIntegration/liquid \
88 samples/thermoIntegration/solid \
89 samples/water/dimer \
90 samples/water/spce \
91 samples/water/ssd \
92 samples/water/ssde \
93 samples/water/ssdrf \
94 samples/water/ssd-ion \
95 samples/water/tip3p_ice \
96 samples/water/tip4p \
97 samples/zcons
98
99 IncludeDirs = \
100 @MPI_INC_DIR@ \
101 @FFTW_INC_DIR@ \
102 @CGAL_INC_DIR@ \
103 @ZLIB_INC_DIR@
104
105 LibraryDirs = \
106 @MPI_LIB_DIR@ \
107 @FFTW_LIB_DIR@ \
108 @CGAL_LIB_DIR@ \
109 @ZLIB_LIB_DIR@
110
111 Libraries = \
112 @LIBS@ \
113 @MPI_LIB@ \
114 @MPI_F90_LIB@ \
115 @FFTW_LIBS@ \
116 @CGAL_LIBS@ \
117 @ZLIB@
118
119 OopseHome = @OOPSE_HOME@
120 ForceParamDir = $(OopseHome)/share/forceFields
121 SampleSimDir = $(OopseHome)/share/samples
122 InstallBinDir = $(OopseHome)/bin
123 DocDir = $(OopseHome)/doc
124 FrcDeclare = -DFRC_PATH="$(ForceParamDir)"
125 F90Declare = -D__FORTRAN90
126 UseSingle = @USE_SINGLE_PRECISION@
127 ifeq "$(UseSingle)" "yes"
128 SingleDeclare = -DSINGLE_PRECISION
129 else
130 SingleDeclare =
131 endif
132 ParallelDeclare = -DIS_MPI
133 SinglePrecision = -DSINGLE_PRECISION
134 UseMPI = @USE_MPI@
135 ModuleCase = @F90_MODULE_NAMES@
136 ModSuffix = @MOD@
137 LinkOptions = \
138 @LDFLAGS@ \
139 @FCLIBS@ \
140 @CXXFLAGS@
141
142
143 ParallelLinkOptions = \
144 @LDFLAGS@ \
145 @FCLIBS@ \
146 @CXXFLAGS@
147
148
149 #---------------------------------------------------------------------------
150 #
151 # Directories
152 #
153 #---------------------------------------------------------------------------
154
155 SourceDir = $(DEV_ROOT)/src
156 TargetDir = $(DEV_ROOT)/obj
157 ParallelTargetDir = $(DEV_ROOT)/MPIobj
158 LibDir = $(DEV_ROOT)/lib
159 MakeDir = $(DEV_ROOT)/make
160 MainMakefile = $(MakeDir)/Makefile
161 BinDir = $(DEV_ROOT)/bin
162 DocsDir = $(DEV_ROOT)/docs
163 CurrentDir = $(CURDIR)
164 CombinedStaticLib = $(LibDir)/libOOPSE.a
165 CombinedParallelStaticLib = $(LibDir)/libOOPSE_MPI.a
166
167 ifdef Source
168 #get the relative path of current package to source directory
169 # /home/maul/gezelter/src/code/src/UseTheForce/Darkside --> UseTheForce/Darkside
170 #Package = $(shell echo $(CurrentDir) | sed -e 's/^.*\/src\/\(.*\)/\1/g')
171 #use shell script to get the absolute path and then rip it off from $(CurrentDir)
172 #Package = $(subst $(shell cd $(SourceDir); pwd)/,,$(CurrentDir))
173 # REMINDER: We are now using the Package line in each subdir makefile.
174 # This avoids the strange path problem and the subshell
175
176 PackageList = $(Package)
177 PackageSourceDir = $(SourceDir)/$(Package)
178 PackageTargetDir = $(TargetDir)
179 PackageParallelTargetDir = $(ParallelTargetDir)
180 JavaMainClass = $(subst /,.,$(Package)).$(Main)
181 else
182 PackageList = $(PackageLibs) $(JavaPackages) $(Applications)
183 endif
184
185 PackageListLoop = $(patsubst %,$(SourceDir)/%/.loop,$(PackageList))
186
187 JRE = $(JAVA_HOME)/jre/lib/rt.jar
188
189 ifdef IS_UNIX
190 X = :
191 else
192 X = \;
193 endif
194
195 #---------------------------------------------------------------------------
196 #
197 # Classification of files
198 #
199 #---------------------------------------------------------------------------
200
201 # Source
202 JavaFiles = $(filter %.java, $(Source))
203 CppFiles = $(filter %.cpp, $(Source))
204 CFiles = $(filter %.c, $(Source))
205 FortranFiles = $(filter %.f, $(Source))
206 F90Files = $(filter %.F90, $(Source))
207 CorbaFiles = $(filter %.idl, $(Source))
208 LexFiles = $(filter %.l, $(Source))
209 YaccFiles = $(filter %.y, $(Source))
210 OtherSourceFiles = $(filter-out $(JavaFiles) $(CppFiles) $(CFiles) \
211 $(FortranFiles) $(F90Files) $(LexFiles) \
212 $(YaccFiles) $(CorbaFiles), \
213 $(Source))
214 ManifestFile = $(PackageSourceDir)/Manifest
215
216 SourceFiles = $(JavaFiles)\
217 $(CppFiles)\
218 $(CFiles)\
219 $(FortranFiles)\
220 $(F90Files)\
221 $(LexFiles)\
222 $(YaccFiles)
223
224 # Target
225 JavaClassFiles = $(JavaFiles:%.java= $(PackageTargetDir)/%.class)
226 JavaClassFilesRel = $(JavaFiles:%.java= $(Package)/%.class)
227 RmiStubFiles = $(RmiSource:%.java= $(PackageTargetDir)/%_Stub.class)
228 RmiSkeletonFiles = $(RmiSource:%.java= $(PackageTargetDir)/%_Skel.class)
229 JniClassFiles = $(JniSource:%.java= $(PackageTargetDir)/%.class)
230 JniHeaders = $(JniSource:%.java= $(PackageSourceDir)/%.h)
231 ObjectFiles = $(CFiles:%.c= $(PackageTargetDir)/%.o)\
232 $(CppFiles:%.cpp= $(PackageTargetDir)/%.o)\
233 $(FortranFiles:%.f= $(PackageTargetDir)/%.o)\
234 $(F90Files:%.F90= $(PackageTargetDir)/%.o)\
235 $(LexFiles:%.l= $(PackageTargetDir)/%.o)\
236 $(YaccFiles:%.y= $(PackageTargetDir)/%.o)
237 ParallelObjectFiles = $(CFiles:%.c= $(PackageParallelTargetDir)/%.o)\
238 $(CppFiles:%.cpp= $(PackageParallelTargetDir)/%.o)\
239 $(FortranFiles:%.f= $(PackageParallelTargetDir)/%.o)\
240 $(F90Files:%.F90= $(PackageParallelTargetDir)/%.o)\
241 $(LexFiles:%.l= $(PackageParallelTargetDir)/%.o)\
242 $(YaccFiles:%.y= $(PackageParallelTargetDir)/%.o)
243
244 DerivedSource = $(YaccFiles:%.y= %.h) \
245 $(YaccFiles:%.y= %.c) \
246 $(LexFiles:%.l= %.c)
247
248 DerivedCFiles = $(YaccFiles:%.y= %.c) \
249 $(LexFiles:%.l= %.c)
250
251 OtherTargetFiles = $(OtherSourceFiles:%=$(PackageTargetDir)/%)
252
253 ###########################################################################
254 #
255 # Figure out the names of the module files based on some work done by
256 # configure. The tr function below is from John Graham-Cumming
257 # (http://www.jgc.org).
258 #
259 # The tr function. Has three arguments:
260 #
261 # $1 The list of characters to translate from
262 # $2 The list of characters to translate to
263 # $3 The text to translate
264 #
265 # For example, $(call tr,A B C,1 2 3,CAPITAL) becomes 21PIT1L.
266
267 tr = $(eval __t := $3) \
268 $(foreach c, \
269 $(join $(addsuffix :,$1),$2), \
270 $(eval __t := \
271 $(subst $(word 1,$(subst :, ,$c)),$(word 2,$(subst :, ,$c)), \
272 $(__t))))$(__t)
273
274 # Common character classes for use with the tr function. Each of
275 # these is actually a variable declaration and must be wrapped with
276 # $() or ${} to be used.
277
278 [A-Z] := A B C D E F G H I J K L M N O P Q R S T U V W X Y Z #
279 [a-z] := a b c d e f g h i j k l m n o p q r s t u v w x y z #
280 [0-9] := 0 1 2 3 4 5 6 7 8 9 #
281 [A-F] := A B C D E F #
282
283 # Figure out whether we have $(eval) or not (GNU Make 3.80 and above)
284 # if we do not then we need to use the shell version of tr, and not the
285 # faster tr function above:
286
287 __have_eval := $(false)
288 __ignore := $(eval __have_eval := $(true))
289
290 ifndef __have_eval
291 uc = $(shell echo $1 | tr "a-z" "A-Z")
292 lc = $(shell echo $1 | tr "A-Z" "a-z")
293 else
294 uc = $(call tr,$([a-z]),$([A-Z]),$1)
295 lc = $(call tr,$([A-Z]),$([a-z]),$1)
296 endif
297
298 # OK, now we can actually use these functions to figure out the names
299 # of the module files:
300
301 ifneq "$(words $(Modules))" "0"
302 ifeq "$(ModuleCase)" "UPPER"
303 MODULES = $(call uc,$(Modules))
304 else
305 ifeq "$(ModuleCase)" "lower"
306 MODULES = $(call lc,$(Modules))
307 else
308 MODULES = $(Modules)
309 endif
310 endif
311 ModuleFiles = $(MODULES:%= $(PackageTargetDir)/%.$(ModSuffix))
312 ParallelModuleFiles = $(MODULES:%= $(PackageParallelTargetDir)/%.$(ModSuffix))
313 endif
314 #
315 ###########################################################################
316
317 ThirdPartyJarsTmp = $(patsubst %,$(LibDir)/%,$(JavaLibraries))
318 ThirdPartyJars = $(subst $(Space),$(X),$(ThirdPartyJarsTmp))
319
320 ifneq "$(words $(JavaFiles))" "0"
321 JavaPackageName = $(subst /,.,$(Package))
322 JarFile = $(LibDir)/$(subst /,,$(Package)).jar
323 endif
324
325 #if Main is defined, do not build library. It may not be true sometimes
326 ifneq "$(words $(ObjectFiles) $(ParallelObjectFiles))" "0"
327 DependencyFile = $(PackageSourceDir)/Makedepend
328 ifneq "$(words $(Main))" "0"
329 Executable = $(BinDir)/$(Main)
330 ifeq "$(BuiltParallelExe)" "1"
331 ParallelExecutable = $(BinDir)/$(Main)_MPI
332 endif
333 else
334 SharedLibrary = $(LibDir)/lib$(subst /,,$(patsubst %,oopse_%,$(Package)))_UP.so
335 StaticLibrary = $(LibDir)/lib$(subst /,,$(patsubst %,oopse_%,$(Package)))_UP.a
336 ParallelSharedLibrary = $(LibDir)/lib$(subst /,,$(patsubst %,oopse_%,$(Package)))_MPI.so
337 ParallelStaticLibrary = $(LibDir)/lib$(subst /,,$(patsubst %,oopse_%,$(Package)))_MPI.a
338 endif
339 endif
340
341 #
342 # Misc
343 #
344 ClassPath = $(JRE)$(X)$(TargetDir)$(X)$(ThirdPartyJars)
345 JavaPackageNames = $(subst /,.,$(JavaPackages))
346 IncludePath = -I$(SourceDir) $(IncludeDirs:%=-I%)
347 LibDirs = -L$(LibDir) $(LibraryDirs:%=-L%)
348 LocalLibs = $(subst /,,$(patsubst %, oopse_%_UP, $(PackageLibs)))
349 ParallelLocalLibs= $(subst /,,$(patsubst %, oopse_%_MPI, $(PackageLibs)))
350 LibList = $(LocalLibs:%=-l%) $(Libraries)
351 LibNames = $(LocalLibs:%=$(LibDir)/lib%.a)
352 ParallelLibList = $(ParallelLocalLibs:%=-l%) $(Libraries)
353 ParallelLibNames = $(ParallelLocalLibs:%=$(LibDir)/lib%.a)
354
355
356 #---------------------------------------------------------------------------
357 #
358 # Tools & Options
359 #
360 #---------------------------------------------------------------------------
361 Print = @echo
362 Move = mv -f
363 Copy = cp
364 CCompiler = @CC@
365 CppCompiler = @CXX@
366 Linker = @CXX@
367 MakeDepend = makedepend
368 LN_S = @LN_S@
369 INSTALL = @INSTALL@
370 EGREP = @EGREP@
371 InstallProgram = @INSTALL_PROGRAM@
372 InstallScript = @INSTALL_SCRIPT@
373 InstallData = @INSTALL_DATA@
374 MkDir = @MKINSTALLDIRS@
375 Delete = rm -f
376 StaticArchiver = @AR@
377 DynamicArchiver = @CC@
378 FortranCompiler = @FC@
379 JavaCompiler = $(JAVA_HOME)/bin/javac
380 JavaArchiver = $(JAVA_HOME)/bin/jar
381 JarSigner = $(JAVA_HOME)/bin/jarsigner
382 JavadocGenerator = $(JAVA_HOME)/bin/javadoc
383 JniCompiler = $(JAVA_HOME)/bin/javah
384 RmiCompiler = $(JAVA_HOME)/bin/rmic
385 JavaExecute = $(JAVA_HOME)/bin/java
386 Purify = purify
387 WordCount = wc
388 List = cat
389 Yacc = @YACC@
390 Lex = @LEX@
391 Ranlib = @RANLIB@
392 Doxygen = @DOXYGEN@
393
394 MakeOptions = -k
395 MakeDependOptions =
396 StaticArchiverOptions = rc
397 DynamicArchiverOptions = -shared
398 JavaArchiverOptions =
399 JniOptions =
400 RmiOptions = -d $(TargetDir) -classpath $(ClassPath) \
401 -sourcepath $(SourceDir)
402 COptions = $(FrcDeclare) $(SingleDeclare) @CFLAGS@
403 CParallelOptions = $(FrcDeclare) $(SingleDeclare) $(ParallelDeclare) @CFLAGS@
404 CppOptions = $(FrcDeclare) $(SingleDeclare) @CXXFLAGS@
405 CppParallelOptions = $(FrcDeclare) $(SingleDeclare) $(ParallelDeclare) @CXXFLAGS@
406 ifeq "$(UseSingle)" "yes"
407 FortranOptions = @FCFLAGS@ @MODDIRFLAG@$(SourceDir) @MODDIRFLAG@$(TargetDir) @PREPDEFFLAG@$(SingleDeclare) @FCFLAGS_SRCEXT@
408 FortranParallelOptions = @FCFLAGS@ @MODDIRFLAG@$(SourceDir) @MODDIRFLAG@$(ParallelTargetDir) @PREPDEFFLAG@$(SingleDeclare) @PREPDEFFLAG@$(ParallelDeclare) @FCFLAGS_SRCEXT@
409 else
410 FortranOptions = @FCFLAGS@ @MODDIRFLAG@$(SourceDir) @MODDIRFLAG@$(TargetDir) @FCFLAGS_SRCEXT@
411 FortranParallelOptions = @FCFLAGS@ @MODDIRFLAG@$(SourceDir) @MODDIRFLAG@$(ParallelTargetDir) @PREPDEFFLAG@$(ParallelDeclare) @FCFLAGS_SRCEXT@
412 endif
413 JavaCompilerOptions = -d $(TargetDir) -classpath $(ClassPath) \
414 -sourcepath $(SourceDir) -deprecation
415 JavaRunOptions = -classpath $(ClassPath)
416 PurifyOptions =
417 JavadocOptions = -d $(DocsDir) \
418 -sourcepath $(SourceDir) \
419 -classpath $(ClassPath) \
420 -author \
421 -package \
422 -use \
423 -splitIndex \
424 -version \
425 -link file:$(JAVA_HOME)/docs/api \
426 -windowtitle $(JavadocWindowTitle) \
427 -doctitle $(JavadocDocTitle) \
428 -header $(JavadocHeader) \
429 -bottom $(JavadocFooter)
430 WordCountOptions = --lines
431
432 Empty =
433 Space = $(Empty) $(Empty)
434
435
436 #---------------------------------------------------------------------------
437 #
438 # Install
439 #
440 #---------------------------------------------------------------------------
441
442 ifneq "$(words $(SampleFiles))" "0"
443 MySample = $(subst $(shell cd $(DEV_ROOT)/samples; pwd)/,,$(CurrentDir))
444 MyInstallDir = $(SampleSimDir)/$(MySample)
445 InstallFiles = $(SampleFiles)
446 InstallCommand = $(InstallData)
447 endif
448
449 ifneq "$(words $(ScriptFiles))" "0"
450 MyInstallDir = $(InstallBinDir)
451 InstallFiles = $(ScriptFiles)
452 InstallCommand = $(InstallProgram)
453 endif
454
455 ifneq "$(words $(Main))" "0"
456 MyInstallDir = $(InstallBinDir)
457 ifeq "$(UseMPI)" "yes"
458 InstallFiles = $(Executable) $(ParallelExecutable)
459 else
460 InstallFiles = $(Executable)
461 endif
462 InstallCommand = $(InstallProgram)
463 ifneq "$(words $(LinkTargets))" "0"
464 MyLinkSource = $(patsubst %, $(MyInstallDir)/%,$(Main))
465 MyLinkTargets = $(patsubst %, $(MyInstallDir)/%,$(LinkTargets))
466 endif
467 endif
468
469 ifneq "$(words $(ForcefieldFiles))" "0"
470 MyInstallDir = $(ForceParamDir)
471 InstallFiles = $(ForcefieldFiles)
472 InstallCommand = $(InstallData)
473 endif
474
475 ifneq "$(words $(InstallFiles))" "0"
476 InstallList =
477 else
478 InstallList = $(patsubst %,$(DEV_ROOT)/%,$(Samples)) $(DEV_ROOT)/forceFields $(patsubst %, $(SourceDir)/%,$(Applications))
479 endif
480
481 InstallListLoop = $(patsubst %,$(SourceDir)/%/.install,$(PackageList)) $(patsubst %,%/.install,$(InstallList))
482
483
484
485 #---------------------------------------------------------------------------
486 #
487 # Rules
488 #
489 #---------------------------------------------------------------------------
490 default : build
491
492 %.loop :
493 @$(MAKE) $(MakeOptions) -C $(subst .loop,,$@) _$(MAKECMDGOALS)all
494
495 # Create target directory
496 $(PackageTargetDir) :
497 $(MkDir) $@
498
499 $(BinDir) :
500 $(MkDir) $@
501
502 # .c -> .o
503 $(PackageTargetDir)/%.o : %.c $(MainMakefile)
504 $(Print) $@
505 $(CCompiler) $(COptions) -c $(IncludePath) $< -o $@
506
507 $(PackageParallelTargetDir)/%.o : %.c $(MainMakefile)
508 $(Print) $@
509 $(CCompiler) $(CParallelOptions) -c $(IncludePath) $< -o $@
510
511 ifeq "$(UseMPI)" "yes"
512 %.o : %.c $(MainMakefile)
513 $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
514 $(MAKE) $(MakeOptions) $(PackageParallelTargetDir)/$@
515 else
516 %.o : %.c $(MainMakefile)
517 $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
518 endif
519
520 # .cpp -> .o
521 $(PackageTargetDir)/%.o : %.cpp $(MainMakefile)
522 $(CppCompiler) $(CppOptions) -c $(IncludePath) $< -o $@
523
524 $(PackageParallelTargetDir)/%.o : %.cpp $(MainMakefile)
525 $(CppCompiler) $(CppParallelOptions) -c $(IncludePath) $< -o $@
526
527 ifeq "$(UseMPI)" "yes"
528 %.o : %.cpp $(MainMakefile)
529 $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
530 $(MAKE) $(MakeOptions) $(PackageParallelTargetDir)/$@
531 else
532 %.o : %.cpp $(MainMakefile)
533 $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
534 endif
535
536 # .f -> .o
537 $(PackageTargetDir)/%.o : %.f $(MainMakefile)
538 $(FortranCompiler) $(FortranOptions) -c $< -o $@
539
540 $(PackageParallelTargetDir)/%.o : %.f $(MainMakefile)
541 $(FortranCompiler) $(FortranParallelOptions) -c $< -o $@
542
543 ifeq "$(UseMPI)" "yes"
544 %.o : %.f $(MainMakefile)
545 $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
546 $(MAKE) $(MakeOptions) $(PackageParallelTargetDir)/$@
547 else
548 %.o : %.f $(MainMakefile)
549 $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
550 endif
551
552 # .F90 -> .o
553 $(PackageTargetDir)/%.o : %.F90 $(MainMakefile)
554 $(FortranCompiler) $(FortranOptions) $(IncludePath) -c $< -o $@
555 if test -n "`ls *.$(ModSuffix)`"; then \
556 $(Move) `ls *.$(ModSuffix)` $(PackageTargetDir);\
557 fi
558
559 $(PackageParallelTargetDir)/%.o : %.F90 $(MainMakefile)
560 $(FortranCompiler) $(FortranParallelOptions) $(IncludePath) -c $< -o $@
561 if test -n "`ls *.$(ModSuffix)`"; then \
562 $(Move) "`ls *.$(ModSuffix)`" $(PackageParallelTargetDir);\
563 fi
564
565 ifeq "$(UseMPI)" "yes"
566 %.o : %.F90 $(MainMakefile)
567 $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
568 if test -n "`ls *.$(ModSuffix)`"; then\
569 $(Move) "`ls *.$(ModSuffix)`" $(PackageTargetDir);\
570 fi
571
572 $(MAKE) $(MakeOptions) $(PackageParallelTargetDir)/$@
573 if test -n "`ls *.$(ModSuffix)`"; then\
574 $(Move) "`ls *.$(ModSuffix)`" $(PackageTargetDir);\
575 fi
576
577 else
578 %.o : %.F90 $(MainMakefile)
579 $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
580 if test -n "`ls *.$(ModSuffix)`"; then\
581 $(Move) "`ls *.$(ModSuffix)`" $(PackageTargetDir);\
582 fi
583 endif
584
585
586 # .java -> .class
587 $(PackageTargetDir)/%.class : $(PackageSourceDir)/%.java
588 $(JavaCompiler) $(JavaCompilerOptions) $<
589
590 %.class : $(PackageSourceDir)/%.java
591 @$(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
592
593 # .class -> .h
594 $(PackageSourceDir)/%.h : $(PackageTargetDir)/%.class
595 $(JniCompiler) $(JniOptions) $(JavaPackageName).$*
596
597 %.h : %.class
598 $(MAKE) $(MakeOptions) $(PackageSourceDir)/$@
599
600 #.y -> .h
601 %.h : %.y
602 $(Yacc) -d $?
603 @$(Move) y.tab.h $*.h
604 @$(Delete) y.tab.c
605
606 #.y -> .c
607 %.c : %.y
608 $(Yacc) -d $?
609 @$(Move) y.tab.c $*.c
610 @$(Delete) y.tab.h
611
612 # .l -> .c
613 %.c : %.l
614 $(Print) $@
615 $(Print) $(Lex) -o$@ $?
616 @$(Lex) -o$@ $?
617
618 # .o -> .a
619
620 $(LibDir)/%_UP.a : $(ObjectFiles)
621 $(StaticArchiver) $(StaticArchiverOptions) $@ $(ObjectFiles)
622 @touch $(LibDir)/.stamp_UP
623
624 $(LibDir)/%_MPI.a: $(ParallelObjectFiles)
625 $(StaticArchiver) $(StaticArchiverOptions) $@ $(ParallelObjectFiles)
626 @touch $(LibDir)/.stamp_MPI
627
628 %_UP.a : $(ObjectFiles)
629 $(MAKE) $(MakeOptions) $(LibDir)/$@
630
631 %_MPI.a : $(ParallelObjectFiles)
632 $(MAKE) $(MakeOptions) $(LibDir)/$@
633
634 # .o -> .so
635 $(LibDir)/%_UP.so : $(ObjectFiles)
636 $(DynamicArchiver) $(ObjectFiles) $(DynamicArchiverOptions) -o $@
637
638 $(LibDir)/%_MPI.so : $(ParallelObjectFiles)
639 $(DynamicArchiver) $(ParallelObjectFiles) $(DynamicArchiverOptions) -o $@
640
641 %_UP.so : $(ObjectFiles)
642 $(MAKE) $(MakeOptions) $(LibDir)/$@
643
644 %_MPI.so : $(ParallelObjectFiles)
645 $(MAKE) $(MakeOptions) $(LibDir)/$@
646
647 # .class -> .jar
648 $(LibDir)/%.jar : $(JavaClassFiles) $(OtherTargetFiles)
649 $(Print) $@
650 @cd $(TargetDir); $(JavaArchiver) -cf $@ \
651 $(JavaClassFilesRel) $(OtherTargetFiles)
652
653 %.jar : $(JavaClassFiles) $(OtherTargetFiles)
654 $(MAKE) $(MakeOptions) $(LibDir)/$@
655
656 # .class -> JavaDoc
657 javadoc :
658 $(Print) $(JavaPackageNames) > $(DEV_ROOT)/packages.tmp
659 $(JavadocGenerator) $(JavadocOptions) @$(DEV_ROOT)/packages.tmp
660 $(Delete) $(DEV_ROOT)/packages.tmp
661 $(Print) Done JavaDoc.
662
663 # .class -> _Stub.class
664 $(PackageTargetDir)/%_Stub.class : $(PackageTargetDir)/%.class
665 $(Print) $@
666 $(RmiCompiler) $(RmiOptions) $(JavaPackageName).$*
667
668 %_Stub.class : %.class
669 $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
670
671 # .class -> _Skel.class
672 $(PackageTargetDir)/%_Skel.class : $(PackageTargetDir)/%.class
673 $(Print) $@
674 $(RmiCompiler) $(RmiOptions) $(JavaPackageName).$*
675
676 %_Skel.class : %.class
677 $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
678
679 document :
680 $(Print) Generate Documentation for OOPSE-2.0
681 @cd $(DEV_ROOT)/src
682 $(Doxygen) $(DEV_ROOT)/make/Doxyfile
683
684 #GUN make funtions to merge the libraries
685 find_objs = $(shell $(StaticArchiver) -t $(1) | $(EGREP) -v "SYMDEF")
686 extract_objs = $(shell $(StaticArchiver) -x $(1) $(call find_objs, $(1)))
687 create_archive = $(shell $(StaticArchiver) $(StaticArchiverOptions) $(2) $(call find_objs, $(1)))
688 remove_objs = $(shell $(Delete) $(call find_objs, $(1)))
689 do_create = $(call extract_objs,$(1))$(call create_archive,$(1),$(2))$(call remove_objs,$(1))
690 do_link = $(shell $(LN_S) $(1) $(2))
691 all_objs = $(foreach thisLib,$(LibNames), $(call find_objs, $(thisLib)))
692 all_parallel_objs = $(foreach thisLib,$(ParallelLibNames), $(call find_objs, $(thisLib)))
693 all_lib_objs = $(patsubst %,$(TargetDir)/%,$(call all_objs))
694 all_lib_parallel_objs = $(patsubst %,$(ParallelTargetDir)/%,$(call all_parallel_objs))
695
696 $(CombinedStaticLib) : $(LibDir)/.stamp_UP
697 $(Print) creating $@
698 $(StaticArchiver) $(StaticArchiverOptions) $@ $(call all_lib_objs)
699 $(Ranlib) $(CombinedStaticLib)
700
701 $(CombinedParallelStaticLib) : $(LibDir)/.stamp_MPI
702 $(Print) creating $@
703 $(StaticArchiver) $(StaticArchiverOptions) $@ $(call all_lib_parallel_objs)
704 $(Ranlib) $(CombinedParallelStaticLib)
705
706 # Executable
707 $(Executable) : $(CombinedStaticLib) $(ObjectFiles)
708 if test ! -d $(BinDir); then \
709 $(MkDir) $(BinDir) ;\
710 fi
711 $(Linker) $(ObjectFiles) $(CombinedStaticLib) $(LinkOptions) $(LibDirs) $(Libraries) -o $@
712
713 $(ParallelExecutable) : $(CombinedParallelStaticLib) $(ParallelObjectFiles)
714 if test ! -d $(BinDir); then \
715 $(MkDir) $(BinDir) ;\
716 fi
717 $(Linker) $(ParallelObjectFiles) $(CombinedParallelStaticLib) $(ParallelLinkOptions) $(LibDirs) $(Libraries) -o $@
718
719 # Anything else is just copied from source to target
720 $(PackageTargetDir)/% : $(PackageSourceDir)/%
721 $(Print) $@
722 $(Copy) $< $@
723
724 # make (or make build)
725 build : $(PackageListLoop)
726 $(Print) Done build.
727
728 _all : _buildall
729
730 _buildall :
731 ifeq "$(UseMPI)" "yes"
732 _buildall : \
733 $(DependencyFile) \
734 $(PackageTargetDir) \
735 $(ObjectFiles) \
736 $(ParallelObjectFiles) \
737 $(JavaClassFiles) \
738 $(RmiStubFiles) \
739 $(RmiSkeletonFiles) \
740 $(OtherTargetFiles) \
741 $(StaticLibrary) \
742 $(ParallelStaticLibrary) \
743 $(JarFile) \
744 $(Executable) \
745 $(ParallelExecutable)
746 else
747 _buildall : \
748 $(DependencyFile) \
749 $(PackageTargetDir) \
750 $(ObjectFiles) \
751 $(JavaClassFiles) \
752 $(RmiStubFiles) \
753 $(RmiSkeletonFiles) \
754 $(OtherTargetFiles) \
755 $(StaticLibrary) \
756 $(JarFile) \
757 $(Executable)
758 endif
759
760 echo : $(PackageListLoop)
761 $(Print) Done echo.
762
763 _echoall :
764 $(Print) $(Modules)
765
766 # make clean
767 clean : $(PackageListLoop)
768 $(Print) Done clean.
769
770 _cleanall :
771 $(Delete) \
772 $(ObjectFiles) \
773 $(ModuleFiles) \
774 $(ParallelObjectFiles) \
775 $(ParallelModuleFiles) \
776 $(JarFile) \
777 $(SharedLibrary) \
778 $(StaticLibrary) \
779 $(ParallelSharedLibrary) \
780 $(ParallelStaticLibrary) \
781 $(CombinedStaticLib) \
782 $(CombinedParallelStaticLib)
783
784 # make distclean
785 distclean : $(PackageListLoop)
786 $(Print) Done clean.
787
788 _distcleanall : _cleanall
789 $(Delete) $(Executable) \
790 $(ParallelExecutable) \
791 $(DependencyFile)
792
793 # make depend
794 depend : $(PackageListLoop)
795 $(Print) Done dependencies.
796
797 _dependall : $(DependencyFile)
798
799 $(DependencyFile) : $(DerivedSource)
800 $(Print) $@
801 @cd $(PackageSourceDir)
802
803 ifneq "$(words $(CppFiles))" "0"
804 $(DEV_ROOT)/scripts/filepp -I $(DEV_ROOT)/src -od '$$(TargetDir)/' -MM $(CppFiles)>> Make.cpptemp
805 @cat Make.cpptemp >> $(DependencyFile)
806 $(Delete) Make.cpptemp
807
808 ifeq "$(UseMPI)" "yes"
809 $(DEV_ROOT)/scripts/filepp -I $(DEV_ROOT)/src -od '$$(ParallelTargetDir)/' $(ParallelDeclare) -MM $(CppFiles)>> Make.cpptemp
810 @cat Make.cpptemp >> $(DependencyFile)
811 @$(Delete) Make.cpptemp
812 endif
813
814 endif
815
816 ifneq "$(words $(CFiles))" "0"
817 $(DEV_ROOT)/scripts/filepp -I $(DEV_ROOT)/src -od '$$(TargetDir)/' -MM $(CFiles) $(DerivedCFiles) >> Make.ctemp
818 @cat Make.ctemp >> $(DependencyFile)
819 $(Delete) Make.ctemp
820
821 ifeq "$(UseMPI)" "yes"
822 $(DEV_ROOT)/scripts/filepp -I $(DEV_ROOT)/src -od '$$(ParallelTargetDir)/' $(ParallelDeclare) -MM $(CFiles) $(DerivedCFiles) >> Make.ctemp
823 @cat Make.ctemp >> $(DependencyFile)
824 @$(Delete) Make.ctemp
825 endif
826
827 endif
828
829 ifneq "$(words $(F90Files))" "0"
830 $(DEV_ROOT)/scripts/filepp -I $(DEV_ROOT)/src -od '$$(TargetDir)/' $(F90Declare) -MM -mc $(ModuleCase) -ms $(ModSuffix) $(F90Files) > Make.ftemp
831 @cat Make.ftemp >> $(DependencyFile)
832 @$(Delete) Make.ftemp
833
834 ifeq "$(UseMPI)" "yes"
835 $(DEV_ROOT)/scripts/filepp -I $(DEV_ROOT)/src -od '$$(ParallelTargetDir)/' $(ParallelDeclare) $(F90Declare) -MM -mc $(ModuleCase) -ms $(ModSuffix) $(F90Files) >> Make.ftemp
836 @cat Make.ftemp >> $(DependencyFile)
837 @$(Delete) Make.ftemp
838 endif
839
840 endif
841
842 # make lib
843 lib : $(PackageListLoop)
844 $(Print) Libraries built.
845
846 _liball : $(JarFile) $(SharedLibrary) $(StaticLibrary)
847
848 jar : $(JarFile)
849
850 jarsign : $(JarFile)
851 $(JarSigner) -keystore GeoSoftKeystore $(JarFile) myself
852
853 #make install
854 %.install :
855 @$(MAKE) $(MakeOptions) -C $(subst .install,,$@) _installall
856
857 install : $(InstallListLoop)
858 $(Print) Done Install
859
860 _installall : _buildall _installdata _installlinks
861
862 $(MyInstallDir) :
863 $(MkDir) $@
864
865 _installdata : $(MyInstallDir)
866 $(Print) $(InstallFiles)
867 ifneq "$(words $(InstallFiles))" "0"
868 $(InstallCommand) $(InstallFiles) $(MyInstallDir)
869 endif
870
871 _installlinks : $(MyInstallDir)
872 ifneq "$(words $(MyLinkTargets))" "0"
873 @cd $(MyInstallDir)
874 $(foreach thisLink,$(MyLinkTargets),$(call do_link,$(MyLinkSource),$(thisLink)))
875 endif
876
877 # make statistics
878 _statisticsall :
879 @$(Print) $(patsubst %,$(CurrentDir)/%,$(SourceFiles)) >> $(DEV_ROOT)/files.tmp
880
881 statistics : $(PackageListLoop)
882 @$(List) $(DEV_ROOT)/files.tmp | xargs $(WordCount) $(WordCountOptions)
883 @$(Delete) $(DEV_ROOT)/files.tmp
884 $(Print) Done statistics.
885
886 # make pure
887 #$(Executable).pure :
888 # $(Purify) $(PurifyOptions) $(CppCompiler) $(LinkOptions) $(LibDirs) \
889 # $(LibList) $(ObjectFiles) -o $@
890 #
891 #pure : $(Executable).pure
892
893 #make cvslog
894 cvslog:
895 $(DEV_ROOT)/scripts/cvs2cl
896
897 # Execute
898 _runexe :
899 $(Executable) $(RunParameters)
900
901 _runjava :
902 $(JavaExecute) $(JavaRunOptions) $(JavaMainClass) $(RunParameters)
903
904 run : _runjava
905
906
907 ifdef $(DependencyFile)
908 -include $(DependencyFile)
909 endif