--- PamCut/makefile 2009/06/15 14:43:30 1.3 +++ PamCut/makefile 2009/08/14 10:29:33 1.4 @@ -28,13 +28,14 @@ # to the compiler options for the main analysis program. OPTIMIZE = -g3 #-DDEBUGPAMCUT + # Library flags # Pamela software is modular, so some libraries may not be available in some istallations. # To avoid linking problems, here you can define flags to exclude those parts of the # PamCut software which make use of unavailable libraries. Remember to place # the code to be excluded between proper preprocessor directives. See the documentation or the cut # TofNucleiZCut for an example. -EXCLUSIONFLAGS = #-DNO_TOFNUCLEI -DNO_CALONUCLEI -DNO_TRKNUCLEI +EXCLUSIONFLAGS = -DNO_TOFNUCLEI -DNO_CALONUCLEI -DNO_TRKNUCLEI @@ -62,8 +63,13 @@ endif # All Target -all: libPamCut.so version - +all: libPamCut.so + @echo + @echo "**** Compiler version and compilation host ****" + @$(C++) --version | grep GCC + @hostname + @echo + # Tool invocations libPamCut.so: $(OBJS) $(USER_OBJS) @echo 'Building target: $@' @@ -96,12 +102,5 @@ fi @echo PamCut installed. -version: - @echo - @echo "**** Compiler version and compilation host ****" - @$(C++) --version | grep GCC - @hostname - @echo - -.PHONY: all clean distclean install dependents version +.PHONY: all clean distclean install