ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-3.0/make/Makefile.in
(Generate patch)

Comparing trunk/OOPSE-3.0/make/Makefile.in (file contents):
Revision 1512 by tim, Wed Sep 29 21:54:03 2004 UTC vs.
Revision 2199 by gezelter, Thu Apr 14 21:41:56 2005 UTC

# Line 33 | Line 33
33   #  $<      - Current dependency
34   #
35   #---------------------------------------------------------------------------
36 + IS_UNIX=1
37  
38 < #---------------------------------------------------------------------------
39 < #
40 < #  Packages
41 < #
42 < #---------------------------------------------------------------------------
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  
56 < #packages to be made
57 < Packages = \
58 <        utils \
59 <        math \
60 <        types \
61 <        primitives \
62 <        visitors \
63 <        UseTheForce/DarkSide \
51 <        UseTheForce \
52 <        brains \
53 <        io \
54 <        integrators \
55 <        minimizers \
56 <        constraints \
57 <        profiling \
58 <        restraints \
59 <        applications
56 > #packages containing applications
57 > Applications = \
58 >        applications/oopse \
59 >        applications/dump2Xyz \
60 >        applications/staticProps \
61 >        applications/dynamicProps \
62 >        applications/simpleBuilder\
63 >        applications/nanoRodBuilder \
64  
65 < #packages contain libraries
66 < PackageLibs = \
67 <              utils \
68 <              math \
69 <              types \
70 <              primitives \
71 <              visitors \
72 <        UseTheForce/DarkSide \
73 <              UseTheForce \
74 <        brains \
75 <              io \
76 <              integrators \
77 <              minimizers \
74 <              constraints \
75 <              profiling \
76 <              restraints
65 > Samples = \
66 >        samples/argon \
67 >        samples/water/dimer \
68 >        samples/water/spce \
69 >        samples/water/ssd \
70 >        samples/water/ssde \
71 >        samples/water/tip3p_ice \
72 >        samples/water/tip4p \
73 >        samples/lipid \
74 >        samples/alkane \
75 >        samples/minimizer \
76 >        samples/metals \
77 >        samples/zcons \
78  
79 + IncludeDirs = \
80 +        @CGAL_INC_DIR@ \
81 +        @MPI_INC_DIR@
82 +
83 + LibraryDirs = \
84 +        @CGAL_LIB_DIR@ \
85 +        @MPI_LIB_DIR@
86 +
87 + Libraries = \
88 +        @CGAL_LIBS@ \
89 +        @MPI_LIB@ \
90 +        @MPI_F90_LIB@
91 +
92 + OopseHome       = @OOPSE_HOME@
93 + ForceParamDir   = $(OopseHome)/share/forceFields
94 + SampleSimDir    = $(OopseHome)/share/samples
95 + InstallBinDir   = $(OopseHome)/bin
96 + DocDir          = $(OopseHome)/doc
97 + FrcDeclare      = -DFRC_PATH="$(ForceParamDir)"
98 + F90Declare      = -D__FORTRAN90
99 + ParallelDeclare = -DIS_MPI
100 + UseMPI          = @USE_MPI@
101 + ModuleCase      = @F90_MODULE_NAMES@
102 + ModSuffix       = @MOD@
103 + LinkOptions = \
104 +        @F90LIBS@
105 +
106 + ParallelLinkOptions = \
107 +        @F90LIBS@
108 +
109 +
110   #---------------------------------------------------------------------------
111   #
112   #  Directories
113   #
114   #---------------------------------------------------------------------------
115  
84 srcdir = @srcdir@
116   SourceDir         = $(DEV_ROOT)/src
117   TargetDir         = $(DEV_ROOT)/obj
118   ParallelTargetDir = $(DEV_ROOT)/MPIobj
# Line 90 | Line 121 | CurrentDir        = $(CURDIR)
121   BinDir            = $(DEV_ROOT)/bin
122   DocsDir           = $(DEV_ROOT)/docs
123   CurrentDir        = $(CURDIR)
124 + CombinedStaticLib = $(LibDir)/libOOPSE.a
125 + CombinedParallelStaticLib = $(LibDir)/libOOPSE_MPI.a
126  
127   ifdef Source
128   #get the relative path of current package to source directory
129   # /home/maul/gezelter/src/code/src/UseTheForce/Darkside --> UseTheForce/Darkside
130   #Package          = $(shell echo $(CurrentDir) | sed -e 's/^.*\/src\/\(.*\)/\1/g')
131   #use shell script to get the absolute path and then rip it off from $(CurrentDir)
132 < Package          = $(subst $(shell cd $(SourceDir); pwd)/,,$(CurrentDir))
132 > #Package          = $(subst $(shell cd $(SourceDir); pwd)/,,$(CurrentDir))
133 > # REMINDER: We are now using the Package line in each subdir makefile.
134 > # This avoids the strange path problem and the subshell
135  
136   PackageList              = $(Package)
137   PackageSourceDir         = $(SourceDir)/$(Package)
# Line 104 | Line 139 | PackageList              = $(Packages) $(JavaPackages)
139   PackageParallelTargetDir = $(ParallelTargetDir)
140   JavaMainClass            = $(subst /,.,$(Package)).$(Main)
141   else
142 < PackageList              = $(Packages) $(JavaPackages)
142 > PackageList              = $(PackageLibs) $(JavaPackages) $(Applications)
143   endif
144  
145   PackageListLoop          = $(patsubst %,$(SourceDir)/%/.loop,$(PackageList))
# Line 155 | Line 190 | ObjectFiles            = $(CFiles:%.c=        $(Packag
190   JniHeaders             = $(JniSource:%.java=  $(PackageSourceDir)/%.h)
191   ObjectFiles            = $(CFiles:%.c=        $(PackageTargetDir)/%.o)\
192                           $(CppFiles:%.cpp=    $(PackageTargetDir)/%.o)\
193 <                                     $(FortranFiles:%.f=  $(PackageTargetDir)/%.o)\
194 <                                     $(F90Files:%.F90=    $(PackageTargetDir)/%.o)\
195 <                                     $(LexFiles:%.l=      $(PackageTargetDir)/%.o)\
196 <                                     $(YaccFiles:%.y=     $(PackageTargetDir)/%.o)
193 >                         $(FortranFiles:%.f=  $(PackageTargetDir)/%.o)\
194 >                         $(F90Files:%.F90=    $(PackageTargetDir)/%.o)\
195 >                         $(LexFiles:%.l=      $(PackageTargetDir)/%.o)\
196 >                         $(YaccFiles:%.y=     $(PackageTargetDir)/%.o)
197   ParallelObjectFiles    = $(CFiles:%.c=        $(PackageParallelTargetDir)/%.o)\
198 <                                     $(CppFiles:%.cpp=    $(PackageParallelTargetDir)/%.o)\
199 <                                     $(FortranFiles:%.f=  $(PackageParallelTargetDir)/%.o)\
200 <                                     $(F90Files:%.F90=    $(PackageParallelTargetDir)/%.o)\
201 <                                     $(LexFiles:%.l=      $(PackageParallelTargetDir)/%.o)\
202 <                                     $(YaccFiles:%.y=     $(PackageParallelTargetDir)/%.o)
198 >                         $(CppFiles:%.cpp=    $(PackageParallelTargetDir)/%.o)\
199 >                         $(FortranFiles:%.f=  $(PackageParallelTargetDir)/%.o)\
200 >                         $(F90Files:%.F90=    $(PackageParallelTargetDir)/%.o)\
201 >                         $(LexFiles:%.l=      $(PackageParallelTargetDir)/%.o)\
202 >                         $(YaccFiles:%.y=     $(PackageParallelTargetDir)/%.o)
203  
204   DerivedSource          = $(YaccFiles:%.y=    %.h) \
205 <                               $(YaccFiles:%.y=    %.c) \
206 <                               $(LexFiles:%.l=     %.c)
205 >                         $(YaccFiles:%.y=    %.c) \
206 >                         $(LexFiles:%.l=     %.c)
207  
208   DerivedCFiles          = $(YaccFiles:%.y=    %.c) \
209 <                               $(LexFiles:%.l=     %.c)
209 >                         $(LexFiles:%.l=     %.c)
210  
211   OtherTargetFiles       = $(OtherSourceFiles:%=$(PackageTargetDir)/%)
212  
213 + ###########################################################################
214 + #
215 + # Figure out the names of the module files based on some work done by
216 + # configure.  The tr function below is from John Graham-Cumming
217 + # (http://www.jgc.org).
218 + #
219 + # The tr function.   Has three arguments:
220 + #
221 + # $1   The list of characters to translate from
222 + # $2   The list of characters to translate to
223 + # $3   The text to translate
224 + #
225 + # For example, $(call tr,A B C,1 2 3,CAPITAL) becomes 21PIT1L.
226 +
227 + tr = $(eval __t := $3)                                                    \
228 +     $(foreach c,                                                         \
229 +         $(join $(addsuffix :,$1),$2),                                    \
230 +         $(eval __t :=                                                    \
231 +             $(subst $(word 1,$(subst :, ,$c)),$(word 2,$(subst :, ,$c)), \
232 +                 $(__t))))$(__t)
233 +
234 + # Common character classes for use with the tr function.  Each of
235 + # these is actually a variable declaration and must be wrapped with
236 + # $() or ${} to be used.
237 +
238 + [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 #
239 + [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 #
240 + [0-9] := 0 1 2 3 4 5 6 7 8 9 #
241 + [A-F] := A B C D E F #
242 +
243 + # Figure out whether we have $(eval) or not (GNU Make 3.80 and above)
244 + # if we do not then we need to use the shell version of tr, and not the
245 + # faster tr function above:
246 +
247 + __have_eval := $(false)
248 + __ignore := $(eval __have_eval := $(true))
249 +
250 + ifndef __have_eval
251 +  uc = $(shell echo $1 | tr "a-z" "A-Z")
252 +  lc = $(shell echo $1 | tr "A-Z" "a-z")
253 + else
254 +  uc = $(call tr,$([a-z]),$([A-Z]),$1)
255 +  lc = $(call tr,$([A-Z]),$([a-z]),$1)
256 + endif
257 +
258 + # OK, now we can actually use these functions to figure out the names
259 + # of the module files:
260 +
261 + ifneq "$(words $(Modules))" "0"
262 + ifeq "$(ModuleCase)" "UPPER"
263 +  MODULES = $(call uc,$(Modules))
264 + else
265 +  ifeq "$(ModuleCase)" "lower"
266 +    MODULES = $(call lc,$(Modules))
267 +  else
268 +    MODULES = $(Modules)
269 +  endif
270 + endif
271 +  ModuleFiles = $(MODULES:%= $(PackageTargetDir)/%.$(ModSuffix))
272 +  ParallelModuleFiles = $(MODULES:%= $(PackageParallelTargetDir)/%.$(ModSuffix))
273 + endif
274 + #
275 + ###########################################################################
276 +
277   ThirdPartyJarsTmp = $(patsubst %,$(LibDir)/%,$(JavaLibraries))
278   ThirdPartyJars    = $(subst $(Space),$(X),$(ThirdPartyJarsTmp))
279  
# Line 186 | Line 285 | ifneq  "$(words $(ObjectFiles) $(ParallelObjectFiles))
285   #if Main is defined, do not build library. It may not be true sometimes
286   ifneq  "$(words $(ObjectFiles) $(ParallelObjectFiles))" "0"
287    DependencyFile    = $(PackageSourceDir)/Makedepend
288 <  ifneq "$(Main)" ""
288 >  ifneq "$(words $(Main))" "0"
289      Executable             = $(BinDir)/$(Main)
290 <    ParallelExecutable     = $(BinDir)/$(Main)_MPI
290 >    ifeq "$(BuiltParallelExe)" "1"
291 >      ParallelExecutable     = $(BinDir)/$(Main)_MPI
292 >    endif
293    else
294 <    SharedLibrary          = $(LibDir)/lib$(subst /,,$(Package)).so
295 <    StaticLibrary          = $(LibDir)/lib$(subst /,,$(Package)).a
296 <    ParallelSharedLibrary  = $(LibDir)/lib$(subst /,,$(Package))_MPI.so
297 <    ParallelStaticLibrary  = $(LibDir)/lib$(subst /,,$(Package))_MPI.a
294 >    SharedLibrary          = $(LibDir)/lib$(subst /,,$(patsubst %,oopse_%,$(Package)))_UP.so
295 >    StaticLibrary          = $(LibDir)/lib$(subst /,,$(patsubst %,oopse_%,$(Package)))_UP.a
296 >    ParallelSharedLibrary  = $(LibDir)/lib$(subst /,,$(patsubst %,oopse_%,$(Package)))_MPI.so
297 >    ParallelStaticLibrary  = $(LibDir)/lib$(subst /,,$(patsubst %,oopse_%,$(Package)))_MPI.a
298    endif
299   endif
300 +
301   #
302   # Misc
303   #
# Line 203 | Line 305 | LocalLibs        = $(subst /,,$(PackageLibs))
305   JavaPackageNames = $(subst /,.,$(JavaPackages))
306   IncludePath      = -I$(SourceDir) $(IncludeDirs:%=-I%)
307   LibDirs          = -L$(LibDir)    $(LibraryDirs:%=-L%)
308 < LocalLibs        = $(subst /,,$(PackageLibs))
309 < LibList          = $(LocalLibs:%=-l%) $(Libraries:%=-l%)
308 > LocalLibs        = $(subst /,,$(patsubst %, oopse_%_UP, $(PackageLibs)))
309 > ParallelLocalLibs= $(subst /,,$(patsubst %, oopse_%_MPI, $(PackageLibs)))
310 > LibList          = $(LocalLibs:%=-l%) $(Libraries)
311 > LibNames         = $(LocalLibs:%=$(LibDir)/lib%.a)
312 > ParallelLibList  = $(ParallelLocalLibs:%=-l%) $(Libraries)
313 > ParallelLibNames = $(ParallelLocalLibs:%=$(LibDir)/lib%.a)
314  
315  
316   #---------------------------------------------------------------------------
# Line 213 | Line 319 | Move                   = mv
319   #
320   #---------------------------------------------------------------------------
321   Print                  = @echo
322 < Move                   = mv
322 > Move                   = mv -f
323   Copy                   = cp
324   CCompiler              = @CC@
325   CppCompiler            = @CXX@
326   Linker                 = @CXX@
327   MakeDepend             = makedepend
328 < Install                = @INSTALL@
328 > INSTALL                = @INSTALL@
329   InstallProgram         = @INSTALL_PROGRAM@
330 + InstallScript          = @INSTALL_SCRIPT@
331   InstallData            = @INSTALL_DATA@
332 < MakeDir                = @MKINSTALLDIRS@
332 > MkDir                  = @MKINSTALLDIRS@
333   Delete                 = rm -fr
334   StaticArchiver         = @AR@
335   DynamicArchiver        = @CC@
# Line 240 | Line 347 | Lex                    = @LEX@
347   List                   = cat
348   Yacc                   = @YACC@
349   Lex                    = @LEX@
350 + Ranlib                 = @RANLIB@
351 + Doxygen                = @DOXYGEN@
352  
353 <
245 < MakeOptions            = -k -s
353 > MakeOptions            = -k
354   MakeDependOptions      =
355   StaticArchiverOptions  = rc
356   DynamicArchiverOptions = -shared
# Line 250 | Line 358 | FortranOptions         =
358   JniOptions             =
359   RmiOptions             = -d $(TargetDir) -classpath $(ClassPath) \
360                           -sourcepath $(SourceDir)
361 + COptions               = $(FrcDeclare) @CFLAGS@
362 + CParallelOptions       = $(FrcDeclare) $(ParallelDeclare) @CFLAGS@
363 + CppOptions             = $(FrcDeclare) @CXXFLAGS@ @OOPSE_TEMPLATE_FLAGS@
364 + CppParallelOptions     = $(FrcDeclare) $(ParallelDeclare) @CXXFLAGS@ @OOPSE_TEMPLATE_FLAGS@
365   FortranOptions         =
366 < F90Options             =  -I$(SourceDir) -module $(TargetDir)
366 > F90Options             =  @PREPFLAG@ @F90FLAGS@ @MODDIRFLAG@$(SourceDir) @MODDIRFLAG@$(TargetDir)
367 > F90ParallelOptions     =  @PREPFLAG@ @F90FLAGS@ @MODDIRFLAG@$(SourceDir) @MODDIRFLAG@$(ParallelTargetDir)  @PREPDEFFLAG@$(ParallelDeclare)
368   JavaCompilerOptions    = -d $(TargetDir) -classpath $(ClassPath) \
369                           -sourcepath $(SourceDir) -deprecation
370   JavaRunOptions         = -classpath $(ClassPath)
# Line 277 | Line 390 | Space                  = $(Empty) $(Empty)
390  
391   #---------------------------------------------------------------------------
392   #
393 + #  Install
394 + #
395 + #---------------------------------------------------------------------------
396 +
397 + ifneq "$(words $(SampleFiles))" "0"
398 +  MySample                 = $(subst $(shell cd $(DEV_ROOT)/samples; pwd)/,,$(CurrentDir))
399 +  MyInstallDir             = $(SampleSimDir)/$(MySample)
400 +  InstallFiles             = $(SampleFiles)
401 +  InstallCommand           = $(InstallData)
402 + endif
403 +
404 + ifneq "$(words $(Main))" "0"
405 +  MyInstallDir             = $(InstallBinDir)
406 +  ifeq "$(UseMPI)" "yes"
407 +    InstallFiles             = $(Executable) $(ParallelExecutable)
408 +  else
409 +    InstallFiles             = $(Executable)
410 +  endif
411 +  InstallCommand           = $(InstallProgram)
412 + endif
413 +
414 + ifneq "$(words $(ForcefieldFiles))" "0"
415 +  MyInstallDir             = $(ForceParamDir)
416 +  InstallFiles             = $(ForcefieldFiles)
417 +  InstallCommand           = $(InstallData)
418 + endif
419 +
420 + ifneq "$(words $(InstallFiles))" "0"
421 +  InstallList            =
422 + else
423 +  InstallList            = $(patsubst %,$(DEV_ROOT)/%,$(Samples)) $(DEV_ROOT)/forceFields $(patsubst %, $(SourceDir)/%,$(Applications))
424 + endif
425 +
426 + InstallListLoop          = $(patsubst %,$(SourceDir)/%/.install,$(PackageList))  $(patsubst %,%/.install,$(InstallList))
427 +
428 +
429 +
430 + #---------------------------------------------------------------------------
431 + #
432   # Rules
433   #
434   #---------------------------------------------------------------------------
# Line 287 | Line 439 | $(PackageTargetDir) :
439  
440   # Create target directory
441   $(PackageTargetDir) :
442 <        $(MakeDir) $@
442 >        $(MkDir) $@
443  
444 + $(BinDir) :
445 +        $(MkDir) $@
446 +
447   # .c -> .o
448   $(PackageTargetDir)/%.o : %.c
449          $(Print) $@
450 <        $(Print) $(CCompiler) $(COptions) -c $(IncludePath) $< -o $@
296 <        @$(CCompiler) $(COptions) -c $(IncludePath) $< -o $@
450 >        $(CCompiler) $(COptions) -c $(IncludePath) $< -o $@
451  
452 + $(PackageParallelTargetDir)/%.o : %.c
453 +        $(Print) $@
454 +        $(CCompiler) $(CParallelOptions) -c $(IncludePath) $< -o $@
455 +
456 + ifeq "$(UseMPI)" "yes"
457   %.o : %.c
458          $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
459 +        $(MAKE) $(MakeOptions) $(PackageParallelTargetDir)/$@
460 + else
461 + %.o : %.c
462 +        $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
463 + endif
464  
465   # .cpp -> .o
466   $(PackageTargetDir)/%.o : %.cpp
303        $(Print) $@
304        $(Print) $(CppCompiler) $(CppOptions) -c $(IncludePath) $< -o $@
467          $(CppCompiler) $(CppOptions) -c $(IncludePath) $< -o $@
468  
469 + $(PackageParallelTargetDir)/%.o : %.cpp
470 +        $(CppCompiler) $(CppParallelOptions) -c $(IncludePath) $< -o $@
471 +
472 + ifeq "$(UseMPI)" "yes"
473   %.o : %.cpp
474          $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
475 +        $(MAKE) $(MakeOptions) $(PackageParallelTargetDir)/$@
476 + else
477 + %.o : %.cpp
478 +        $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
479 + endif
480  
481   # .f -> .o
482   $(PackageTargetDir)/%.o : %.f
483 <        $(Print) $@
313 <        $(Print) $(FortranCompiler) $(FortranOptions) -c $< -o $@
314 <        @$(FortranCompiler) $(FortranOptions) -c $< -o $@
483 >        $(FortranCompiler) $(FortranOptions) -c $< -o $@
484  
485 + $(PackageParallelTargetDir)/%.o : %.f
486 +        $(FortranCompiler) $(FortranParallelOptions) -c $< -o $@
487 +
488 + ifeq "$(UseMPI)" "yes"
489   %.o : %.f
490          $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
491 +        $(MAKE) $(MakeOptions) $(PackageParallelTargetDir)/$@
492 + else
493 + %.o : %.f
494 +        $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
495 + endif
496  
497   # .F90 -> .o
498   $(PackageTargetDir)/%.o : %.F90
499 <        $(Print) $@
500 <        $(Print) $(F90Compiler) $(F90Options) -c $< -o $@
501 <        @$(F90Compiler) $(F90Options) -c $< -o $@
499 >        $(F90Compiler) $(F90Options) $(IncludePath) -c $< -o $@
500 >        if test -n "`ls *.$(ModSuffix)`"; then \
501 >          $(Move) `ls *.$(ModSuffix)` $(PackageTargetDir);\
502 >        fi
503  
504 + $(PackageParallelTargetDir)/%.o : %.F90
505 +        $(F90Compiler) $(F90ParallelOptions) $(IncludePath) -c $< -o $@
506 +        if test -n "`ls *.$(ModSuffix)`"; then \
507 +          $(Move) "`ls *.$(ModSuffix)`" $(PackageParallelTargetDir);\
508 +        fi
509 +
510 + ifeq "$(UseMPI)" "yes"
511   %.o : %.F90
512          $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
513 +        if test -n "`ls *.$(ModSuffix)`"; then\
514 +          $(Move) "`ls *.$(ModSuffix)`" $(PackageTargetDir);\
515 +        fi
516  
517 +        $(MAKE) $(MakeOptions) $(PackageParallelTargetDir)/$@
518 +        if test -n "`ls *.$(ModSuffix)`"; then\
519 +          $(Move) "`ls *.$(ModSuffix)`" $(PackageTargetDir);\
520 +        fi
521 +
522 + else
523 + %.o : %.F90
524 +        $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
525 +        if test -n "`ls *.$(ModSuffix)`"; then\
526 +          $(Move) "`ls *.$(ModSuffix)`" $(PackageTargetDir);\
527 +        fi
528 + endif
529 +
530 +
531   # .java -> .class
532   $(PackageTargetDir)/%.class : $(PackageSourceDir)/%.java
533 <        $(Print) $@
331 <        $(Print) $(JavaCompiler) $(JavaCompilerOptions) $<
332 <        @$(JavaCompiler) $(JavaCompilerOptions) $<
533 >        $(JavaCompiler) $(JavaCompilerOptions) $<
534  
535   %.class : $(PackageSourceDir)/%.java
536          @$(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
537  
538   # .class -> .h
539   $(PackageSourceDir)/%.h : $(PackageTargetDir)/%.class
339        $(Print) $@
340        $(Print) $(JniCompiler) $(JniOptions) $(JavaPackageName).$*
540          $(JniCompiler) $(JniOptions) $(JavaPackageName).$*
541  
542   %.h : %.class
# Line 345 | Line 544 | $(PackageSourceDir)/%.h : $(PackageTargetDir)/%.class
544  
545   #.y -> .h
546   %.h : %.y
547 <        $(Print) $@
349 <        $(Print) @$(Yacc) -d $?
350 <        @$(Yacc) -d  $?
547 >        $(Yacc) -d  $?
548          @$(Move) y.tab.h $*.h
549          @$(Delete) y.tab.c
550  
551   #.y -> .c
552   %.c : %.y
553 <        $(Print) $@
357 <        $(Print) $(Yacc) -d $?
358 <        @$(Yacc) -d  $?
553 >        $(Yacc) -d  $?
554          @$(Move) y.tab.c $*.c
555          @$(Delete) y.tab.h
556  
# Line 366 | Line 561 | $(LibDir)/%.a : $(ObjectFiles)
561          @$(Lex) -o$@ $?
562  
563   # .o -> .a
369 $(LibDir)/%.a : $(ObjectFiles)
370        $(Print) $@
371        $(Print) $(StaticArchiver) $(StaticArchiverOptions) $@ $(ObjectFiles)
372        @$(StaticArchiver) $(StaticArchiverOptions) $@ $(ObjectFiles)
564  
565 < %.a : $(ObjectFiles)
566 <        $(MAKE) $(MakeOptions) $(LibDir)/$@
565 > $(LibDir)/%_UP.a : $(ObjectFiles)
566 >        $(StaticArchiver) $(StaticArchiverOptions) $@ $(ObjectFiles)
567 >        @touch $(LibDir)/.stamp_UP
568  
569 < $(LibDir)/%_MPI.a : $(ParallelObjectFiles)
570 <        $(Print) $@
571 <        $(Print) $(StaticArchiver) $(StaticArchiverOptions) $@ $(ParallelObjectFiles)
380 <        @$(StaticArchiver) $(StaticArchiverOptions) $@ $(ParallelObjectFiles)
569 > $(LibDir)/%_MPI.a: $(ParallelObjectFiles)
570 >        $(StaticArchiver) $(StaticArchiverOptions) $@ $(ParallelObjectFiles)
571 >        @touch $(LibDir)/.stamp_MPI
572  
573 + %_UP.a : $(ObjectFiles)
574 +        $(MAKE) $(MakeOptions) $(LibDir)/$@
575 +
576   %_MPI.a : $(ParallelObjectFiles)
577          $(MAKE) $(MakeOptions) $(LibDir)/$@
578  
579   # .o -> .so
580 < $(LibDir)/%.so : $(ObjectFiles)
387 <        $(Print) $@    
388 <        $(Print) $(DynamicArchiver) $(ObjectFiles) $(DynamicArchiverOptions) -o $@
580 > $(LibDir)/%_UP.so : $(ObjectFiles)
581          $(DynamicArchiver) $(ObjectFiles) $(DynamicArchiverOptions) -o $@
582  
391 %.so : $(ObjectFiles)
392        $(MAKE) $(MakeOptions) $(LibDir)/$@
393
583   $(LibDir)/%_MPI.so : $(ParallelObjectFiles)
395        $(Print) $@    
396        $(Print) $(DynamicArchiver) $(ParallelObjectFiles) $(DynamicArchiverOptions) -o $@
584          $(DynamicArchiver) $(ParallelObjectFiles) $(DynamicArchiverOptions) -o $@
585  
586 + %_UP.so : $(ObjectFiles)
587 +        $(MAKE) $(MakeOptions) $(LibDir)/$@
588 +
589   %_MPI.so : $(ParallelObjectFiles)
590          $(MAKE) $(MakeOptions) $(LibDir)/$@
591  
592   # .class -> .jar
593   $(LibDir)/%.jar : $(JavaClassFiles) $(OtherTargetFiles)
594          $(Print) $@
405        $(Print) $(JavaArchiver) -cf $@ $(JavaClassFilesRel) $(OtherTargetFiles)
595          @cd $(TargetDir); $(JavaArchiver) -cf $@ \
596          $(JavaClassFilesRel) $(OtherTargetFiles)
597  
# Line 432 | Line 621 | $(PackageTargetDir)/%_Skel.class : $(PackageTargetDir)
621   %_Skel.class : %.class
622          $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
623  
624 < # Executable
625 < $(Executable) : $(ObjectFiles)
626 <        $(Print) $@
627 <        $(Print) $(Linker) $(LinkOptions) $(LibDirs) $(LibList) $(ObjectFiles) -o $@
439 <        $(Linker) $(LinkOptions) $(LibDirs) $(LibList) $(ObjectFiles) -o $@
624 > document :
625 >        $(Print) Generate Documentation for OOPSE-2.0
626 >        @cd $(DEV_ROOT)/src    
627 >        $(Doxygen) $(DEV_ROOT)/make/Doxyfile
628  
629 < $(ParallelExecutable) : $(ParallelObjectFiles)
630 <        $(Print) $@
631 <        $(Print) $(Linker) $(LinkOptions) $(LibDirs) $(LibList) $(ParallelObjectFiles) -o $@
632 <        $(Linker) $(LinkOptions) $(LibDirs) $(LibList) $(ParallelObjectFiles) -o $@
629 > #GUN make funtions to merge the libraries
630 > find_objs = $(shell $(StaticArchiver) -t $(1))
631 > extract_objs = $(shell $(StaticArchiver) -x $(1) $(call find_objs, $(1)))
632 > create_archive = $(shell  $(StaticArchiver) $(StaticArchiverOptions) $(2) $(call find_objs, $(1)))
633 > remove_objs = $(shell $(Delete) $(call find_objs, $(1)))
634 > do_create = $(call extract_objs,$(1))$(call create_archive,$(1),$(2))$(call remove_objs,$(1))  
635  
636 + $(CombinedStaticLib) : $(LibDir)/.stamp_UP
637 +        $(Print) create $@      
638 +        $(foreach thisLib,$(LibNames),$(call do_create,$(thisLib),$@))
639 +        $(Ranlib) $(CombinedStaticLib)
640 +
641 + $(CombinedParallelStaticLib) : $(LibDir)/.stamp_MPI
642 +        $(Print) create $@
643 +        $(foreach thisLib,$(ParallelLibNames), $(call do_create, $(thisLib), $@))
644 +        $(Ranlib) $(CombinedParallelStaticLib)
645 +
646 + # Executable
647 + $(Executable) : $(CombinedStaticLib) $(ObjectFiles) $(BinDir)
648 +        $(Linker) $(ObjectFiles) $(CombinedStaticLib) $(LinkOptions) $(LibDirs) $(Libraries) -o $@
649 +
650 + $(ParallelExecutable) : $(CombinedParallelStaticLib) $(ParallelObjectFiles) $(BinDir)
651 +        $(Linker) $(ParallelObjectFiles) $(CombinedParallelStaticLib) $(ParallelLinkOptions) $(LibDirs) $(Libraries) -o $@
652 +
653   # Anything else is just copied from source to target
654   $(PackageTargetDir)/% : $(PackageSourceDir)/%
655          $(Print) $@
# Line 454 | Line 661 | _buildall : \
661  
662   _all : _buildall
663  
664 + _buildall :
665 + ifeq "$(UseMPI)" "yes"
666   _buildall : \
667          $(DependencyFile) \
668          $(PackageTargetDir) \
669          $(ObjectFiles) \
670 +        $(ParallelObjectFiles) \
671          $(JavaClassFiles) \
672          $(RmiStubFiles) \
673          $(RmiSkeletonFiles) \
674          $(OtherTargetFiles) \
465        $(SharedLibrary) \
675          $(StaticLibrary) \
676 +        $(ParallelStaticLibrary) \
677          $(JarFile) \
678 <        $(Executable)
678 >        $(Executable) \
679 >        $(ParallelExecutable)
680 > else
681 > _buildall : \
682 >        $(DependencyFile) \
683 >        $(PackageTargetDir) \
684 >        $(ObjectFiles) \
685 >        $(JavaClassFiles) \
686 >        $(RmiStubFiles) \
687 >        $(RmiSkeletonFiles) \
688 >        $(OtherTargetFiles) \
689 >        $(StaticLibrary) \
690 >        $(JarFile) \
691 >        $(Executable)
692 > endif
693  
694 + echo : $(PackageListLoop)
695 +        $(Print) Done echo.
696  
697 + _echoall :
698 +        $(Print) $(Modules)
699 +
700   # make clean
701   clean : $(PackageListLoop)
702          $(Print) Done clean.    
703  
704   _cleanall :
705 <        $(Delete) $(PackageTargetDir)/* \
706 <                  $(JarFile) \
707 <                  $(SharedLibrary) \
708 <                  $(StaticLibrary) \
709 <                  $(Executable) \
710 <                  $(DependencyFile)
705 >        $(Delete) \
706 >                $(ObjectFiles) \
707 >                $(ModuleFiles) \
708 >                $(ParallelObjectFiles) \
709 >                $(ParallelModuleFiles) \
710 >                $(JarFile) \
711 >                $(SharedLibrary) \
712 >                $(StaticLibrary) \
713 >                $(ParallelSharedLibrary) \
714 >                $(ParallelStaticLibrary) \
715 >                $(CombinedStaticLib) \
716 >                $(CombinedParallelStaticLib)
717  
718 + # make distclean
719 + distclean : $(PackageListLoop)
720 +        $(Print) Done clean.    
721  
722 + _distcleanall : _cleanall
723 +        $(Delete) $(Executable) \
724 +                  $(ParallelExecutable) \
725 +                  $(DependencyFile)
726 +
727   # make depend
728   depend : $(PackageListLoop)
729          $(Print) Done dependencies.
# Line 491 | Line 734 | $(DependencyFile) : $(DerivedSource)
734          $(Print) $@
735          @cd $(PackageSourceDir)
736  
494        touch Make.ctemp
495        touch Make.ctemp
496
737   ifneq "$(words $(CppFiles))" "0"
738 <        $(Print) Make dependencies for $(CppFiles)
739 <        $(Print) $(CppCompiler) $(IncludePath) -MM $(CppFiles)  > Make.cpptemp
740 <        $(CppCompiler) $(IncludePath) -MM $(CppFiles)  > Make.cpptemp
741 <        cat Make.cpptemp | sed 's/^[a-zA-Z0-9]/$$\(DEV_ROOT\)\/obj\/&/g' >> $(DependencyFile)
742 <        cat Make.cpptemp | sed 's/^[a-zA-Z0-9]/$$\(DEV_ROOT\)\/MPIobj\/&/g' >> $(DependencyFile)
738 >        $(DEV_ROOT)/scripts/filepp  -I $(DEV_ROOT)/src -od '$$(TargetDir)/' -MM $(CppFiles)>> Make.cpptemp
739 >        @cat Make.cpptemp  >> $(DependencyFile)
740 >        $(Delete) Make.cpptemp
741 >
742 >  ifeq "$(UseMPI)" "yes"
743 >        $(DEV_ROOT)/scripts/filepp  -I $(DEV_ROOT)/src -od '$$(ParallelTargetDir)/' $(ParallelDeclare) -MM $(CppFiles)>> Make.cpptemp
744 >        @cat Make.cpptemp  >> $(DependencyFile)
745 >        @$(Delete) Make.cpptemp
746 >  endif
747 >
748   endif
749  
750   ifneq "$(words $(CFiles))" "0"
751 <        $(Print) Make dependencies for $(CFiles)
752 <        $(Print) $(CCompiler)   $(IncludePath) -MM $(CFiles) $(DerivedCFiles)   > Make.ctemp
753 <        $(CCompiler)   $(IncludePath) -MM $(CFiles) $(DerivedCFiles)   > Make.ctemp
509 <        cat Make.ctemp | sed 's/^[a-zA-Z0-9]/$$\(DEV_ROOT\)\/obj\/&/g' >> $(DependencyFile)
510 <        cat Make.ctemp | sed 's/^[a-zA-Z0-9]/$$\(DEV_ROOT\)\/MPIobj\/&/g' >> $(DependencyFile)
751 >        $(DEV_ROOT)/scripts/filepp  -I $(DEV_ROOT)/src -od '$$(TargetDir)/'  -MM $(CFiles) $(DerivedCFiles)  >> Make.ctemp
752 >        @cat Make.ctemp  >> $(DependencyFile)
753 >        $(Delete) Make.ctemp
754  
755 +  ifeq "$(UseMPI)" "yes"
756 +        $(DEV_ROOT)/scripts/filepp  -I $(DEV_ROOT)/src -od '$$(ParallelTargetDir)/' $(ParallelDeclare) -MM $(CFiles) $(DerivedCFiles)  >> Make.ctemp
757 +        @cat Make.ctemp  >> $(DependencyFile)
758 +        @$(Delete) Make.ctemp
759 +  endif
760 +
761   endif
762  
763   ifneq "$(words $(F90Files))" "0"
764 <        $(Print) Make dependencies for $(F90Files)
765 <        $(DEV_ROOT)/scripts/sfmakedepend  -I $(DEV_ROOT)/src -d '$$(DEV_ROOT)/obj' -f ./Make.ftemp -h *.F90
766 <        cat Make.ftemp >> $(DependencyFile)
764 >        $(DEV_ROOT)/scripts/filepp  -I $(DEV_ROOT)/src -od '$$(TargetDir)/' $(F90Declare) -MM -mc $(ModuleCase) -ms $(ModSuffix) $(F90Files) > Make.ftemp
765 >        @cat Make.ftemp >> $(DependencyFile)
766 >        @$(Delete) Make.ftemp
767 >
768 >  ifeq "$(UseMPI)" "yes"
769 >        $(DEV_ROOT)/scripts/filepp  -I $(DEV_ROOT)/src -od '$$(ParallelTargetDir)/' $(ParallelDeclare) $(F90Declare) -MM -mc $(ModuleCase) -ms $(ModSuffix)  $(F90Files) >> Make.ftemp
770 >        @cat Make.ftemp >> $(DependencyFile)
771 >        @$(Delete) Make.ftemp
772 >  endif
773 >
774   endif
519        $(Delete) Make.cpptemp Make.ctemp Make.ftemp
775  
776   # make lib
777   lib    : $(PackageListLoop)
# Line 529 | Line 784 | jarsign : $(JarFile)
784   jarsign : $(JarFile)
785          $(JarSigner) -keystore GeoSoftKeystore $(JarFile) myself
786  
787 + #make install
788 + %.install :
789 +        @$(MAKE) $(MakeOptions) -C $(subst .install,,$@) _installall    
790 +
791 + install : $(InstallListLoop)
792 +        $(Print) Done Install
793 +
794 + _installall : _buildall _installdata
795 +
796 + $(MyInstallDir) :
797 +        $(MkDir) $@
798 +
799 + _installdata :  $(MyInstallDir)
800 +        $(Print) $(InstallFiles)
801 + ifneq "$(words $(InstallFiles))" "0"
802 +        $(InstallCommand) $(InstallFiles) $(MyInstallDir)
803 + endif      
804 +
805   # make statistics
806   _statisticsall :
807 <        @$(Print) $(SourceFiles) >> $(DEV_ROOT)/files.tmp
807 >        @$(Print) $(patsubst %,$(CurrentDir)/%,$(SourceFiles)) >> $(DEV_ROOT)/files.tmp
808  
809   statistics : $(PackageListLoop)
810          @$(List) $(DEV_ROOT)/files.tmp | xargs $(WordCount) $(WordCountOptions)
# Line 545 | Line 818 | pure : $(Executable).pure
818  
819   pure : $(Executable).pure
820  
821 + #make cvslog
822 + cvslog:
823 +        $(DEV_ROOT)/scripts/cvs2cl
824 +
825   # Execute
826   _runexe :
827          $(Executable) $(RunParameters)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines