/[PAMELA software]/PamCut/makefile
ViewVC logotype

Diff of /PamCut/makefile

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by pam-fi, Fri May 29 10:10:20 2009 UTC revision 1.9 by pam-fi, Wed Mar 24 08:11:25 2010 UTC
# Line 26  C++ = g++ Line 26  C++ = g++
26  # "#ifdef DEBUGPAMCUT" and "#endif"). Note that if you  # "#ifdef DEBUGPAMCUT" and "#endif"). Note that if you
27  # use debug instructions also in the .h code (headers) you will also have to add -DDEBUGPAMCUT  # use debug instructions also in the .h code (headers) you will also have to add -DDEBUGPAMCUT
28  # to the compiler options for the main analysis program.  # to the compiler options for the main analysis program.
29    # 3) Since this is a general compiler flag it can also be used, eg., to set the -m32 flag
30  OPTIMIZE = -g3 #-DDEBUGPAMCUT  OPTIMIZE = -g3 #-DDEBUGPAMCUT
31    
32    # Linker flags
33    # The flags defined here will be directly inserted into the linker invocation. Place here the
34    # -m32 flag, for example.
35    LINKERFLAGS =
36    
37  # Library flags  # Library flags
38  # Pamela software is modular, so some libraries may not be available in some istallations.  # Pamela software is modular, so some libraries may not be available in some istallations.
39  # To avoid linking problems, here you can define flags to exclude those parts of the  # To avoid linking problems, here you can define flags to exclude those parts of the
40  # PamCut software which make use of unavailable libraries. Remember to place  # PamCut software which make use of unavailable libraries. Remember to place
41  # the code to be excluded between proper preprocessor directives. See the documentation or the cut  # the code to be excluded between proper preprocessor directives. See the documentation or the cut
42  # TofNucleiZCut for an example.  # TofNucleiZCut for an example.
43  EXCLUSIONFLAGS = #-DNO_TOFNUCLEI -DNO_CALONUCLEI -DNO_TRKNUCLEI  # Since PamCut headers may refer to the optional libraries, it's important to define the same
44    # flags when compiling the analysis code. Otherwise, analysis code will include PamCut headers which,
45    # if no exclusion flag is set, will try to include optional software headers.
46    # Conversely, if you use optional libraries remember to tell it to the linker.
47    #
48    # Excluded cuts and actions:
49    # DNO_CALONUCLEI: CaloNucleiZCut
50    # NO_TRKNUCLEI: TrkNucleiZCut
51    # NO_TOFNUCLEI: TofNucleiZCut
52    # NO_CALOPRESAMPLER: ReprocessCaloAction
53    
54    EXCLUSIONFLAGS = -DNO_CALONUCLEI -DNO_TRKNUCLEI -DNO_TOFNUCLEI #-DNO_CALOPRESAMPLER
55    
56  # Put below the files on which every .cpp  must depend on, ie., those files that,  # Put below the files on which every .cpp  must depend on, ie., those files that,
57  # if modified, will trigger a complete recompilation of the project.  # if modified, will trigger a complete recompilation of the project.
# Line 62  endif Line 77  endif
77  endif  endif
78    
79  # All Target  # All Target
80  all: libPamCut.so version  all: libPamCut.so
81            @echo
82            @echo "**** Compiler version and compilation host ****"
83            @$(C++) --version | grep GCC
84            @hostname
85            @echo
86            
87  # Tool invocations  # Tool invocations
88  libPamCut.so: $(OBJS) $(USER_OBJS)  libPamCut.so: $(OBJS) $(USER_OBJS)
89          @echo 'Building target: $@'          @echo 'Building target: $@'
90          @echo 'Invoking: GCC C++ Linker'          @echo 'Invoking: GCC C++ Linker'
91          $(C++) -shared -o"libPamCut.so" $(OBJS)          $(C++) -shared $(LINKERFLAGS) -o"libPamCut.so" $(OBJS)
92          @echo 'Finished building target: $@'          @echo 'Finished building target: $@'
93          @echo ' '          @echo ' '
94    
# Line 77  clean: Line 97  clean:
97          -$(RM) $(CPP_DEPS) $(OBJS) libPamCut.so          -$(RM) $(CPP_DEPS) $(OBJS) libPamCut.so
98          -@echo ' '          -@echo ' '
99    
100  version:  distclean:
101          @echo          @rm -f ${PAM_LIB}/libPamCut.so
102          @echo "**** Compiler version and compilation host ****"          @rm -rf ${PAM_INC}/PamCut
103          @$(C++) --version | grep GCC          @echo Installed files successfully removed.
104          @hostname          
105          @echo  install:
106            @if [[ "${PAM_INC}" == ""  || "${PAM_LIB}" == "" ]]; then \
107                echo Pamela environment not set. ; \
108            else \
109              rootdir=`pwd`; \
110              for file in `find -name "*.h"`; do \
111                    dir=`dirname $${file} | sed 's/.\///'`; \
112                    mkdir -p ${PAM_INC}/PamCut/$${dir}; \
113                cp -u $${file} ${PAM_INC}/PamCut/$${dir}; \
114              done; \
115              cp -u libPamCut.so ${PAM_LIB}; \
116            fi
117            @echo PamCut installed.
118    
119    .PHONY: all clean distclean install
120    
 .PHONY: all clean dependents version  

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.9

  ViewVC Help
Powered by ViewVC 1.1.23