1 |
# PamelaDigitizer |
# PamelaDigitizer |
2 |
# SOFTWARE VERSION |
# SOFTWARE VERSION |
3 |
VER= v3r00 |
VER= v3r05 |
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' |
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++ |
|
CXXFLAGS=-Wall -O -fPIC -pthread |
|
40 |
# ROOTCINT |
# ROOTCINT |
41 |
ROOTCINT=rootcint |
ROOTCINT=rootcint |
|
# Here the variables defining the local directories |
|
|
# ... not used ... |
|
|
# Here the PAMELA environmental variables to be checked |
|
|
# ... not used ... |
|
|
|
|
|
# Here the local variables used to build the targets |
|
|
|
|
42 |
|
|
43 |
# Compilers settings |
# Compilers settings |
44 |
ROOTCFLAGS =`root-config --cflags` |
ROOTCFLAGS =`root-config --cflags` |
45 |
ROOTLDFLAGS =`root-config --ldflags` |
ROOTLDFLAGS =`root-config --ldflags` |
46 |
ROOTLIBS =`root-config --libs` -lHbook |
ROOTLIBS =`root-config --libs` -lHbook |
47 |
CERNLIBS =`cernlib_noshift kernlib,packlib,genlib` |
#CERNLIBS =`cernlib_noshift kernlib,packlib,genlib` |
48 |
|
CERNLIBS = |
49 |
F77LIBS =-lg2c -lnsl |
F77LIBS =-lg2c -lnsl |
50 |
SYSLIBS =-lm -ldl -rdynamic |
SYSLIBS =-lm -ldl -rdynamic |
51 |
LD =g++ |
LD =g++ |
52 |
CXXFLAGS= -O3 -Wall -fPIC ${ROOTCFLAGS} |
CXXFLAGS= -O3 -Wall -fPIC ${ROOTCFLAGS} ${PAM_BIT} |
53 |
#CXXFLAGS= -g -Wall -O ${ROOTCFLAGS} |
#CXXFLAGS= -g -Wall -O ${ROOTCFLAGS} ${PAM_BIT} |
54 |
# flags needed on the pamelatov's: |
# flags needed on the pamelatov's: |
55 |
LDFLAGS = |
|
56 |
#LDFLAGS = -g -lmathlib -lpacklib -lkernlib -llapack -lg2c -lm -lnsl -lcrypt -L/cern/2005/lib |
#LDFLAGS = $(PAM_BIT) -g -lmathlib -lpacklib -lkernlib -llapack -lg2c -lm -lnsl -lcrypt -L/cern/2005/lib |
57 |
#LDFLAGS = -g -llapack -lg2c -lm -lnsl -lcrypt -L/cern/2005/lib |
#LDFLAGS = -g -llapack -lg2c -lm -lnsl -lcrypt -L/cern/2005/lib |
58 |
|
LDFLAGS = $(PAM_BIT) $(CERNLIBS) |
59 |
|
#LDFLAGS = -lmathlib -lpacklib -lkernlib -llapack -lg2c -lm -lnsl -lcrypt -L/cern/2005/lib $(PAM_BIT) |
60 |
|
|
61 |
|
#LDFLAGS = -g -llapack -lg2c -lm -lnsl -lcrypt -L/cern/2005/lib $(PAM_BIT) |
62 |
|
|
63 |
|
CXXSRCS= Digitizer.cxx DigitizePSCU.cxx DigitizeCalo.cxx DigitizeTOF.cxx DigitizeAC.cxx DigitizeS4.cxx DigitizeND.cxx Write.cxx DigitizeTRK.cxx Pamelagp2Digits.cxx DigitVersion.cxx |
64 |
|
OBJS=$(CXXSRCS:%.cxx=%.o) |
65 |
|
|
66 |
|
CPPSRCS= CRC.cpp calcrc.cpp |
67 |
|
CPOBJS=$(CPPSRCS:%.cpp=%.o) |
68 |
|
|
69 |
HEAS =$(SRCS:.cpp=.h) |
HEAS =$(SRCS:.cpp=.h) |
70 |
OBJS =$(SRCS:.cpp=.o) |
#OBJS =$(SRCS:.cpp=.o) |
71 |
DEPS =$(SRCS:.cpp=.d) |
DEPS =$(SRCS:.cpp=.d) |
72 |
CLAS =$(DICS:.cpp= ) |
CLAS =$(DICS:.cpp= ) |
73 |
CLASH=$(DICS:.cpp=.h) |
CLASH=$(DICS:.cpp=.h) |
75 |
DICO =$(addsuffix Dict.o, ${CLAS}) |
DICO =$(addsuffix Dict.o, ${CLAS}) |
76 |
DICH =$(addsuffix Dict.h, ${CLAS}) |
DICH =$(addsuffix Dict.h, ${CLAS}) |
77 |
|
|
78 |
all: mkverpath Pamelagp2Digits |
all: prepare libs Pamelagp2Digits |
79 |
@echo -e ${GREEN} "" |
@echo -e ${GREEN} "" |
80 |
@(${EGREEN} " Finished, now you can install the package \n (use: make install) "; ${RESET}) |
@(${EGREEN} " Finished, now you can install the package \n (use: make install) "; ${RESET}) |
81 |
@echo -e ${GREEN} "" |
@echo -e ${GREEN} "" |
82 |
@${RESET} |
@${RESET} |
83 |
|
|
84 |
|
prepare: mkverpath |
85 |
|
|
86 |
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} |
libs: $(CPOBJS) ${OBJS} ${DICO} |
87 |
# @(${EWHITE} " Compiling Pamelagp2Digits... \n ") |
|
88 |
$(LD) $(LDFLAGS) -o $@ $^ ${ROOTLIBS} ${CERNLIBS} ${F77LIBS} ${SYSLIBS} ${PAM_LIB}/libGLTables.so ${PAM_LIB}/libsgp4.so ${PAM_YODA}/lib/libyoda.so |
|
89 |
|
#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} |
90 |
|
Pamelagp2Digits: |
91 |
|
@(${EWHITE} " Compiling Pamelagp2Digits... \n ") |
92 |
|
@ $(LD) $(LDFLAGS) -o $@ $^ ${ROOTLIBS} ${CERNLIBS} ${F77LIBS} ${SYSLIBS} ${PAM_LIB}/libGLTables.so ${PAM_LIB}/libsgp4.so ${PAM_YODA}/lib/libyoda.so ${OBJS} $(CPOBJS) |
93 |
@rm -f *.o |
@rm -f *.o |
94 |
|
|
95 |
Digitizer: Digitizer.o ${OBJS} ${DICO} |
Digitizer: Digitizer.o ${OBJS} ${DICO} |
96 |
$(LD) $(LDFLAGS) -o $@ $^ ${ROOTLIBS} ${CERNLIBS} ${F77LIBS} ${SYSLIBS} |
$(LD) $(LDFLAGS) -o $@ $^ ${ROOTLIBS} ${CERNLIBS} ${F77LIBS} ${SYSLIBS} |
97 |
|
|
98 |
depend: ${DEPS} |
depend: ${DEPS} |
99 |
|
|
100 |
%.d: %.cpp |
|
101 |
|
%.d: %.cxx |
102 |
@echo Creating dependencies for $< |
@echo Creating dependencies for $< |
103 |
@$(CXX) -MM $(CXXFLAGS) $< -o $@ |
@$(CXX) -MM $(CXXFLAGS) $< -o $@ |
104 |
|
|
|
|
|
|
|
|
105 |
.SUFFIXES: .cxx |
.SUFFIXES: .cxx |
106 |
%.o: %.cxx |
%.o: %.cxx |
107 |
$(CXX) $(CXXFLAGS) -c $< `root-config --cflags` -I${PAM_YODA}/include/yoda/ -I${PAM_INC}/ |
@(${EGREEN} "Creating CXX object file: "${WHITE} "`basename $@`"; ${RESET}) |
108 |
|
@$(CXX) $(CXXFLAGS) -c $< `root-config --cflags` -I${PAM_YODA}/include/yoda/ -I${PAM_INC}/ |
109 |
|
|
110 |
|
.SUFFIXES: .cpp |
111 |
|
%.o: %.cpp |
112 |
|
@(${EGREEN} "Creating CPP object file: "${WHITE} "`basename $@`"; ${RESET}) |
113 |
|
@$(CXX) $(CXXFLAGS) -c $< `root-config --cflags` -I${PAM_YODA}/include/yoda/ -I${PAM_INC}/ |
114 |
|
|
115 |
.PHONY: clean |
.PHONY: clean |
116 |
|
|
117 |
mkverpath: |
mkverpath: |
118 |
@(${EGREEN} creating file DigitVersion.cxx; ${RESET}) |
@(${EGREEN} creating file DigitVersion.cxx; ${RESET}) |
119 |
@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 |
@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 |
120 |
@sleep 0.8 |
@sleep 1.2 |
121 |
|
|
122 |
clean: |
clean: |
123 |
|
|
124 |
|
|
125 |
@(${EGREEN} Removing object files .....) |
@(${EGREEN} Removing object files .....) |
126 |
@rm -f *~ |
@rm -f *~ |
127 |
@rm -f ${OBJS} ${DICO} *.o |
@rm -f ${OBJS} ${CPOBJS} ${DICO} *.o |
128 |
@echo Removing dependencies files ..... |
@echo " Removing dependencies files ....." |
129 |
@rm -f ${DEPS} |
@rm -f ${DEPS} |
130 |
@echo Removing dictionary files ..... |
@echo " Removing dictionary files ....." |
131 |
@rm -f ${JUNK} ${DICH} |
@rm -f ${JUNK} ${DICH} |
132 |
@echo Removing temporary files ..... |
@echo " Removing temporary files ....." |
133 |
|
@rm -f ${JUNK} |
134 |
|
@rm -f DigitVersion.cxx; |
135 |
|
@echo " Removing Pamelagp2Digits ....." |
136 |
@rm -f ${JUNK} |
@rm -f ${JUNK} |
137 |
@rm -f DigitVersion.cxx; ${RESET} |
@rm -f Pamelagp2Digits; ${RESET} |
138 |
|
@touch DigitVersion.cxx |
139 |
|
|
140 |
install: |
install: |
141 |
# @echo "TEST: copying the executable in the PAM_BIN directory"; |
# @echo "TEST: copying the executable in the PAM_BIN directory"; |