/[PAMELA software]/PamelaDigitizer/Makefile
ViewVC logotype

Diff of /PamelaDigitizer/Makefile

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

revision 1.5 by silvio, Wed Dec 5 13:02:51 2007 UTC revision 1.12 by pamelats, Wed Oct 15 14:03:21 2008 UTC
# Line 1  Line 1 
1  # PamelaDigitizer  # PamelaDigitizer
2  # SOFTWARE VERSION  # SOFTWARE VERSION
3  VER= v2r01  VER= v3r03
4  # An almost general purpouse Makefile for PAMELA repository  # An almost general purpouse Makefile for PAMELA repository
5  # Let's start with some useful definition to make the echo colored  # Let's start with some useful definition to make the echo colored
6  RED='\E[1;31;40m'  RED='\E[1;31;40m'
7  GREEN='\E[1;32;40m'  GREEN='\E[1;32;40m'
8  YELLOW='\E[1;33;40m'  YELLOW='\E[1;33;40m'
9  BLUE='\E[1;34;40m'  BLUE='\E[1;34;40m'
10  WHITE='\E[1;37;40m'  WHITE='\E[1;37;40m'
11  VIOLET='\E[1;35;40m'  VIOLET='\E[1;35;40m'
12  CYAN='\E[1;36;40m'  CYAN='\E[1;36;40m'
13  # Here the echo definition to use them  # Here the echo definition to use them
14  EVIOLET=echo -e ${VIOLET}  EVIOLET=echo -e ${VIOLET}
15  ECYAN=echo -e ${CYAN}  ECYAN=echo -e ${CYAN}
16  ERED=echo -e ${RED}  ERED=echo -e ${RED}
17  EGREEN=echo -e ${GREEN}  EGREEN=echo -e ${GREEN}
18  EYELLOW=echo -e ${YELLOW}  EYELLOW=echo -e ${YELLOW}
19  EBLUE=echo -e ${BLUE}  EBLUE=echo -e ${BLUE}
20  EWHITE=echo -e ${WHITE}  EWHITE=echo -e ${WHITE}
21  # Reset the terminal  # Reset the terminal
22  RESET=tput sgr0  RESET=tput sgr0
23  # Here the variables used to override the standard make flags  # Here the variables used to override the standard make flags
24  #MAKE  #MAKE
25  MAKE=make  MAKE=make
26  # C  # C
27  CC=gcc  CC=gcc
28  #CFLAGS=-Wall -O -fPIC -pthread -g  #CFLAGS=-Wall -O -fPIC -pthread -g ${PAM_BIT}
29  CFLAGS=-Wall -O -fPIC -pthread  CFLAGS=-Wall -O -fPIC -pthread ${PAM_BIT}
30  # Enviroment:  # Enviroment:
31  GCCVER=`gcc --version | head -1`  GCCVER=`gcc --version | head -1`
32  UNAMEA=`uname -a`  UNAMEA=`uname -a`
33  TODAY=`date`  TODAY=`date`
34  # F77  # F77
35  F77=g77  F77=g77
36  #F77FLAGS=  -Wall -Wno-globals -fvxt -fno-automatic -fbounds-check -g -extend_source  -static -fno-backslash  #F77FLAGS=  -Wall -Wno-globals -fvxt -fno-automatic -fbounds-check -g -extend_source  -static -fno-backslash ${PAM_BIT}
37  F77FLAGS=  -Wall -Wno-globals -fvxt -fno-automatic -fbounds-check -extend_source -static -fno-backslash  F77FLAGS=  -Wall -Wno-globals -fvxt -fno-automatic -fbounds-check -extend_source -static -fno-backslash ${PAM_BIT}
38  # C++  # C++
39  CXX=g++  CXX=g++
40  CXXFLAGS=-Wall -O -fPIC -pthread  # ROOTCINT
41  # ROOTCINT  ROOTCINT=rootcint
42  ROOTCINT=rootcint  
43  # Here the variables defining the local directories  # Compilers settings
44  # ... not used ...  ROOTCFLAGS  =`root-config --cflags`
45  # Here the  PAMELA environmental variables to be checked  ROOTLDFLAGS =`root-config --ldflags`
46  # ... not used ...  ROOTLIBS    =`root-config --libs` -lHbook
47    CERNLIBS    =`cernlib_noshift kernlib,packlib,genlib`
48  # Here the local variables used to build the targets  F77LIBS     =-lg2c -lnsl
49    SYSLIBS     =-lm -ldl -rdynamic
50    LD          =g++
51  # Compilers settings  CXXFLAGS= -O3 -Wall -fPIC ${ROOTCFLAGS} ${PAM_BIT}
52  ROOTCFLAGS  =`root-config --cflags`  #CXXFLAGS= -g -Wall -O ${ROOTCFLAGS} ${PAM_BIT}
53  ROOTLDFLAGS =`root-config --ldflags`  # flags needed on the pamelatov's:
54  ROOTLIBS    =`root-config --libs` -lHbook  
55  CERNLIBS    =`cernlib_noshift kernlib,packlib,genlib`  #LDFLAGS = $(PAM_BIT) -g -lmathlib -lpacklib -lkernlib -llapack -lg2c -lm -lnsl -lcrypt -L/cern/2005/lib
56  F77LIBS     =-lg2c -lnsl  #LDFLAGS = -g -llapack -lg2c -lm -lnsl -lcrypt -L/cern/2005/lib
57  SYSLIBS     =-lm -ldl -rdynamic  LDFLAGS = $(PAM_BIT) $(CERNLIBS)
58  LD          =g++  #LDFLAGS = -lmathlib -lpacklib -lkernlib -llapack -lg2c -lm -lnsl -lcrypt -L/cern/2005/lib $(PAM_BIT)
59  CXXFLAGS=-g -O -Wall -fPIC ${ROOTCFLAGS}  
60  #CXXFLAGS= -g -Wall -O ${ROOTCFLAGS}  #LDFLAGS = -g -llapack -lg2c -lm -lnsl -lcrypt -L/cern/2005/lib $(PAM_BIT)
61  # flags needed on the pamelatov's:  
62  LDFLAGS = -g -lmathlib -lpacklib -lkernlib -llapack -lg2c -lm -lnsl -lcrypt -L/cern/2005/lib  CXXSRCS=  Digitizer.cxx DigitizeRunHeader.cxx DigitizeCalo.cxx DigitizeTOF.cxx DigitizeAC.cxx DigitizeS4.cxx DigitizeND.cxx  Write.cxx DigitizeTRK.cxx Pamelagp2Digits.cxx DigitVersion.cxx
63  #LDFLAGS = -g -llapack -lg2c -lm -lnsl -lcrypt -L/cern/2005/lib  OBJS=$(CXXSRCS:%.cxx=%.o)
64    
65  HEAS =$(SRCS:.cpp=.h)  CPPSRCS= CRC.cpp calcrc.cpp
66  OBJS =$(SRCS:.cpp=.o)  CPOBJS=$(CPPSRCS:%.cpp=%.o)
67  DEPS =$(SRCS:.cpp=.d)  
68  CLAS =$(DICS:.cpp= )  HEAS =$(SRCS:.cpp=.h)
69  CLASH=$(DICS:.cpp=.h)  #OBJS =$(SRCS:.cpp=.o)
70  JUNK =$(addsuffix ~,${SRCS}) $(addsuffix ~,${HEAS})  DEPS =$(SRCS:.cpp=.d)
71  DICO =$(addsuffix Dict.o, ${CLAS})  CLAS =$(DICS:.cpp= )
72  DICH =$(addsuffix Dict.h, ${CLAS})  CLASH=$(DICS:.cpp=.h)
73    JUNK =$(addsuffix ~,${SRCS}) $(addsuffix ~,${HEAS})
74  all: mkverpath Pamelagp2Digits  DICO =$(addsuffix Dict.o, ${CLAS})
75          @echo -e ${GREEN} ""  DICH =$(addsuffix Dict.h, ${CLAS})
76          @(${EGREEN} " Finished, now you can install the package \n  (use: make install) "; ${RESET})  
77          @echo -e ${GREEN} ""  all: prepare libs Pamelagp2Digits
78          @${RESET}          @echo -e ${GREEN} ""
79            @(${EGREEN} " Finished, now you can install the package \n  (use: make install) "; ${RESET})
80            @echo -e ${GREEN} ""
81  Pamelagp2Digits:  DigitVersion.o CRC.o calcrc.o Pamelagp2Digits.o Digitizer.o ${OBJS} ${DICO}          @${RESET}
82  #       @(${EWHITE} " Compiling Pamelagp2Digits... \n ")  
83          $(LD) $(LDFLAGS) -o $@ $^ ${ROOTLIBS} ${CERNLIBS} ${F77LIBS} ${SYSLIBS} ${PAM_LIB}/libGLTables.so ${PAM_LIB}/libsgp4.so ${PAM_YODA}/lib/libyoda.so  prepare: mkverpath
84  #       ${RESET}  
85    libs: $(CPOBJS) ${OBJS} ${DICO}
86  Digitizer: Digitizer.o ${OBJS} ${DICO}  
87          $(LD) $(LDFLAGS) -o $@ $^ ${ROOTLIBS} ${CERNLIBS} ${F77LIBS} ${SYSLIBS}  
88    #Pamelagp2Digits: DigitVersion.o CRC.o calcrc.o Pamelagp2Digits.o Digitizer.o DigitizeRunHeader.o DigitizeCalo.o DigitizeTOF.o DigitizeAC.o DigitizeS4.o DigitizeND.o  Write.o DigitizeTRK.o ${OBJS} ${DICO}
89  depend: ${DEPS}  Pamelagp2Digits:
90            @(${EWHITE} " Compiling Pamelagp2Digits... \n ")
91  %.d: %.cpp          @ $(LD) $(LDFLAGS) -o $@ $^ ${ROOTLIBS} ${CERNLIBS} ${F77LIBS} ${SYSLIBS} ${PAM_LIB}/libGLTables.so ${PAM_LIB}/libsgp4.so ${PAM_YODA}/lib/libyoda.so ${OBJS} $(CPOBJS)
92          @echo Creating dependencies for $<          @rm -f *.o
93          @$(CXX) -MM $(CXXFLAGS) $< -o $@  
94    Digitizer: Digitizer.o ${OBJS} ${DICO}
95            $(LD) $(LDFLAGS) -o $@ $^ ${ROOTLIBS} ${CERNLIBS} ${F77LIBS} ${SYSLIBS}
96    
97  .SUFFIXES: .cxx  depend: ${DEPS}
98  .cxx.o:  
99          $(CXX) $(CXXFLAGS) -c $< `root-config --cflags` -I${PAM_YODA}/include/yoda/ -I${PAM_INC}/  
100    %.d: %.cxx
101            @echo Creating dependencies for $<
102  .PHONY: clean          @$(CXX) -MM $(CXXFLAGS) $< -o $@
103    
104  mkverpath:  .SUFFIXES: .cxx
105          @(${EGREEN} creating file DigitVersion.cpp; ${RESET})  %.o: %.cxx
106          @echo '#include <TSystem.h>' >  DigitVersion.cpp; echo ' char *DigitizerInfo(bool print){ if ( print ) printf("\nPAMELA PamelaDigitizer version: ${VER}\n\nCompiled on '${TODAY}' with: '${GCCVER}'\n\nOn: '${UNAMEA}'\n\n"); return("${VER}"); }' >>  DigitVersion.cpp          @(${EGREEN} "Creating CXX object file: "${WHITE} "`basename $@`"; ${RESET})
107          @sleep 0.8          @$(CXX) $(CXXFLAGS) -c $< `root-config --cflags` -I${PAM_YODA}/include/yoda/ -I${PAM_INC}/
108    
109  clean:  .SUFFIXES: .cpp
110    %.o: %.cpp
111            @(${EGREEN} "Creating CPP object file: "${WHITE} "`basename $@`"; ${RESET})
112          @(${EGREEN} Removing object files .....)          @$(CXX) $(CXXFLAGS) -c $< `root-config --cflags` -I${PAM_YODA}/include/yoda/ -I${PAM_INC}/
113          @rm -f ${OBJS} ${DICO} *.o  
114          @echo Removing dependencies files .....  .PHONY: clean
115          @rm -f ${DEPS}  
116          @echo Removing dictionary files .....  mkverpath:
117          @rm -f ${JUNK} ${DICH}          @(${EGREEN} creating file DigitVersion.cxx; ${RESET})
118          @echo Removing temporary files .....          @echo '#include <TSystem.h>' >  DigitVersion.cxx; echo ' char *DigitizerInfo(bool print){ if ( print ) printf("\nPAMELA PamelaDigitizer version: ${VER}\n\nCompiled on '${TODAY}' with: '${GCCVER}'\n\nOn: '${UNAMEA}'\n\n"); return("${VER}"); }' >>  DigitVersion.cxx
119          @rm -f ${JUNK}          @sleep 1.2
120          @rm -f DigitVersion.cpp; ${RESET}  
121    clean:
122  install:  
123  #       @echo "TEST: copying the executable in the PAM_BIN directory";  
124          @(${EGREEN} "copying the executable in the PAM_BIN directory"; ${RESET})          @(${EGREEN} Removing object files .....)
125          cp Pamelagp2Digits ${PAM_BIN}/.          @rm -f *~
126          cp TrigCalibParam.txt ${PAM_BIN}/.          @rm -f ${OBJS} ${CPOBJS} ${DICO} *.o
127            @echo " Removing dependencies files ....."
128            @rm -f ${DEPS}
129            @echo " Removing dictionary files ....."
130            @rm -f ${JUNK} ${DICH}
131            @echo " Removing temporary files ....."
132            @rm -f ${JUNK}
133            @rm -f DigitVersion.cxx;
134            @echo " Removing Pamelagp2Digits ....."
135            @rm -f ${JUNK}
136            @rm -f Pamelagp2Digits; ${RESET}
137    
138    install:
139    #       @echo "TEST: copying the executable in the PAM_BIN directory";
140            @(${EGREEN} "copying the executable in the PAM_BIN directory"; ${RESET})
141            cp Pamelagp2Digits ${PAM_BIN}/.

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.12

  ViewVC Help
Powered by ViewVC 1.1.23