forked from jan-kaspar/analysis_ctpps_alignment_2017_postTS2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
49 lines (43 loc) · 2.52 KB
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
all: distributions match x_alignment_meth_o x_alignment_relative y_alignment y_alignment_alt
distributions: distributions.cc config.h stat.h
g++ `root-config --libs` -lMinuit `root-config --cflags` \
-g -O3 --std=c++1z -Wall -Wextra -Wno-attributes\
-I$(CMSSW_RELEASE_BASE)/src \
-L$(CMSSW_RELEASE_BASE)/lib/slc6_amd64_gcc700 \
-lDataFormatsFWLite -lDataFormatsCommon -lDataFormatsCTPPSDetId -lFWCoreParameterSet -lFWCorePythonParameterSet \
distributions.cc -o distributions
match: match.cc config.h stat.h alignment_classes.h
g++ `root-config --libs` -lMinuit `root-config --cflags` \
-g -O3 --std=c++1z -Wall -Wextra -Wno-attributes\
-I$(CMSSW_RELEASE_BASE)/src \
-L$(CMSSW_RELEASE_BASE)/lib/slc6_amd64_gcc700 \
-lDataFormatsFWLite -lDataFormatsCommon -lDataFormatsCTPPSDetId -lFWCoreParameterSet -lFWCorePythonParameterSet \
match.cc -o match
x_alignment_meth_o: x_alignment_meth_o.cc config.h stat.h alignment_classes.h
g++ `root-config --libs` -lMinuit `root-config --cflags` \
-g -O3 --std=c++1z -Wall -Wextra -Wno-attributes\
-I$(CMSSW_RELEASE_BASE)/src \
-L$(CMSSW_RELEASE_BASE)/lib/slc6_amd64_gcc700 \
-lDataFormatsFWLite -lDataFormatsCommon -lDataFormatsCTPPSDetId -lFWCoreParameterSet -lFWCorePythonParameterSet \
x_alignment_meth_o.cc -o x_alignment_meth_o
x_alignment_relative: x_alignment_relative.cc config.h stat.h alignment_classes.h
g++ `root-config --libs` -lMinuit `root-config --cflags` \
-g -O3 --std=c++1z -Wall -Wextra -Wno-attributes\
-I$(CMSSW_RELEASE_BASE)/src \
-L$(CMSSW_RELEASE_BASE)/lib/slc6_amd64_gcc700 \
-lDataFormatsFWLite -lDataFormatsCommon -lDataFormatsCTPPSDetId -lFWCoreParameterSet -lFWCorePythonParameterSet \
x_alignment_relative.cc -o x_alignment_relative
y_alignment: y_alignment.cc config.h stat.h alignment_classes.h
g++ `root-config --libs` -lMinuit `root-config --cflags` \
-g -O3 --std=c++1z -Wall -Wextra -Wno-attributes\
-I$(CMSSW_RELEASE_BASE)/src \
-L$(CMSSW_RELEASE_BASE)/lib/slc6_amd64_gcc700 \
-lDataFormatsFWLite -lDataFormatsCommon -lDataFormatsCTPPSDetId -lFWCoreParameterSet -lFWCorePythonParameterSet \
y_alignment.cc -o y_alignment
y_alignment_alt: y_alignment_alt.cc config.h stat.h alignment_classes.h
g++ `root-config --libs` -lMinuit `root-config --cflags` \
-g -O3 --std=c++1z -Wall -Wextra -Wno-attributes\
-I$(CMSSW_RELEASE_BASE)/src \
-L$(CMSSW_RELEASE_BASE)/lib/slc6_amd64_gcc700 \
-lDataFormatsFWLite -lDataFormatsCommon -lDataFormatsCTPPSDetId -lFWCoreParameterSet -lFWCorePythonParameterSet \
y_alignment_alt.cc -o y_alignment_alt