28 |
# to the compiler options for the main analysis program. |
# to the compiler options for the main analysis program. |
29 |
OPTIMIZE = -g3 #-DDEBUGPAMCUT |
OPTIMIZE = -g3 #-DDEBUGPAMCUT |
30 |
|
|
31 |
|
|
32 |
# Library flags |
# Library flags |
33 |
# 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. |
34 |
# 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 |
35 |
# PamCut software which make use of unavailable libraries. Remember to place |
# PamCut software which make use of unavailable libraries. Remember to place |
36 |
# 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 |
37 |
# TofNucleiZCut for an example. |
# TofNucleiZCut for an example. |
|
EXCLUSIONFLAGS = #-DNO_TOFNUCLEI -DNO_CALONUCLEI -DNO_TRKNUCLEI |
|
|
|
|
38 |
|
|
39 |
|
EXCLUSIONFLAGS = -DNO_CALONUCLEI -DNO_TRKNUCLEI #-DNO_TOFNUCLEI -DNO_CALONUCLEI -DNO_TRKNUCLEI |
40 |
|
|
41 |
# 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, |
42 |
# if modified, will trigger a complete recompilation of the project. |
# if modified, will trigger a complete recompilation of the project. |
62 |
endif |
endif |
63 |
|
|
64 |
# All Target |
# All Target |
65 |
all: version libPamCut.so |
all: libPamCut.so |
66 |
|
@echo |
67 |
|
@echo "**** Compiler version and compilation host ****" |
68 |
|
@$(C++) --version | grep GCC |
69 |
|
@hostname |
70 |
|
@echo |
71 |
|
|
72 |
# Tool invocations |
# Tool invocations |
73 |
libPamCut.so: $(OBJS) $(USER_OBJS) |
libPamCut.so: $(OBJS) $(USER_OBJS) |
74 |
@echo 'Building target: $@' |
@echo 'Building target: $@' |
82 |
-$(RM) $(CPP_DEPS) $(OBJS) libPamCut.so |
-$(RM) $(CPP_DEPS) $(OBJS) libPamCut.so |
83 |
-@echo ' ' |
-@echo ' ' |
84 |
|
|
85 |
version: |
distclean: |
86 |
@gcc --version | grep gcc; echo |
@rm -f ${PAM_LIB}/libPamCut.so |
87 |
|
@rm -rf ${PAM_INC}/PamCut |
88 |
|
@echo Installed files successfully removed. |
89 |
|
|
90 |
|
install: |
91 |
|
@if [[ "${PAM_INC}" == "" || "${PAM_LIB}" == "" ]]; then \ |
92 |
|
echo Pamela environment not set. ; \ |
93 |
|
else \ |
94 |
|
rootdir=`pwd`; \ |
95 |
|
for file in `find -name "*.h"`; do \ |
96 |
|
dir=`dirname $${file} | sed 's/.\///'`; \ |
97 |
|
mkdir -p ${PAM_INC}/PamCut/$${dir}; \ |
98 |
|
cp -u $${file} ${PAM_INC}/PamCut/$${dir}; \ |
99 |
|
done; \ |
100 |
|
cp -u libPamCut.so ${PAM_LIB}; \ |
101 |
|
fi |
102 |
|
@echo PamCut installed. |
103 |
|
|
104 |
|
.PHONY: all clean distclean install |
105 |
|
|
|
.PHONY: all clean dependents version |
|