1 |
# |
2 |
# ************ PamCut makefile ************ |
3 |
# |
4 |
# Author: Nicola Mori |
5 |
# |
6 |
# This makefile will produce a cut library libPamCut.so. In the "Build options" |
7 |
# section the various compilation options can be set; they will propagate to the |
8 |
# whole project. |
9 |
# |
10 |
|
11 |
|
12 |
# ------------------------------- Build options ----------------------------# |
13 |
# |
14 |
# Normally you will not have the necessity to modify what lies below, if you |
15 |
# correctly specified the names for the submakefiles in include.mk. Modify |
16 |
# the options below to set optimization flags, compiler name and so on. |
17 |
# |
18 |
|
19 |
# C++ compiler and linker |
20 |
C++ = g++ |
21 |
|
22 |
# Optimization flags. |
23 |
# 1) Use -O, -O1, -O2, -O3 to optimize for speed or -g, -g1, -g2, -g3 |
24 |
# for debugging (slower execution). |
25 |
# 2) Uncomment -DDEBUGPAMCUT to enable debug sections in the .cpp code (these sections must be included between |
26 |
# "#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 |
28 |
# 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 |
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 |
38 |
# 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 |
40 |
# 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 |
42 |
# TofNucleiZCut for an example. |
43 |
# 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, |
57 |
# if modified, will trigger a complete recompilation of the project. |
58 |
COMMONDEPS = makefile |
59 |
|
60 |
# The file include.mk contains the inclusion of all the sub-makefiles (subdir.mk) |
61 |
# in the project. Includes for new cuts must be added there and not below... |
62 |
-include include.mk |
63 |
|
64 |
#-------------------------------- Make body --------------------------------# |
65 |
# |
66 |
# Below the make commands are defined. There are no options to set in this section, |
67 |
# so it has to be modified only in case of radical changes to the make procedure. |
68 |
|
69 |
# Remove command for clean |
70 |
RM := rm -rf |
71 |
|
72 |
# Additional dependencies from headers of other software (PAMELA, ROOT) |
73 |
ifneq ($(MAKECMDGOALS),clean) |
74 |
ifneq ($(strip $(CPP_DEPS)),) |
75 |
-include $(CPP_DEPS) |
76 |
endif |
77 |
endif |
78 |
|
79 |
# All Target |
80 |
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 |
88 |
libPamCut.so: $(OBJS) $(USER_OBJS) |
89 |
@echo 'Building target: $@' |
90 |
@echo 'Invoking: GCC C++ Linker' |
91 |
$(C++) -shared $(LINKERFLAGS) -o"libPamCut.so" $(OBJS) |
92 |
@echo 'Finished building target: $@' |
93 |
@echo ' ' |
94 |
|
95 |
# Other Targets |
96 |
clean: |
97 |
-$(RM) $(CPP_DEPS) $(OBJS) libPamCut.so |
98 |
-@echo ' ' |
99 |
|
100 |
distclean: |
101 |
@rm -f ${PAM_LIB}/libPamCut.so |
102 |
@rm -rf ${PAM_INC}/PamCut |
103 |
@echo Installed files successfully removed. |
104 |
|
105 |
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 |
|