forked from sjzhu0v0/AnalysisFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
22 lines (16 loc) · 833 Bytes
/
Makefile
File metadata and controls
22 lines (16 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
DIR_BASE=$(shell pwd)
FLAGS_INCLUDE=-I$(DIR_BASE)/include
FLAGS_ROOT=$(shell root-config --cflags --libs)
FLAGS_MINUIT=-lMinuit
kit/TreeClone.exe: kit/TreeClone.cpp
g++ -o $@ $^ $(FLAGS_INCLUDE) $(FLAGS_ROOT)
tutorial/RDataFrame_PIDSeparationPower.exe: tutorial/RDataFrame_PIDSeparationPower.cpp
g++ -o $@ $^ $(FLAGS_INCLUDE) $(FLAGS_ROOT) $(FLAGS_MINUIT)
tutorial/MultStudy.exe: tutorial/MultStudy.cpp
g++ -o $@ $^ $(FLAGS_INCLUDE) $(FLAGS_ROOT) $(FLAGS_MINUIT)
macro/TriggerStudy.exe: macro/TriggerStudy.cpp
g++ -o $@ $^ $(FLAGS_INCLUDE) $(FLAGS_ROOT) $(FLAGS_MINUIT)
macro/Control_MultShow.exe: macro/Control_MultShow.cpp
g++ -o $@ $^ $(FLAGS_INCLUDE) $(FLAGS_ROOT) $(FLAGS_MINUIT)
macro/NumContribCalibrationTest.exe: macro/NumContribCalibrationTest.cpp
g++ -o $@ $^ $(FLAGS_INCLUDE) $(FLAGS_ROOT) $(FLAGS_MINUIT)