forked from cms-analysis/HiggsAnalysis-CombinedLimit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
125 lines (94 loc) · 4.44 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
################################################################################
# HiggsAnalysis/Combined Limit Makefile #
# #
# $Author: dpiparo $ - $Date: 2011/06/16 14:29:29 $ #
# #
# o Automatic compilation of new programs and classes*. #
# o Automatic generation of CINT dictionaries via rootcint. #
# #
# * progs should have cpp extension, classes .cc and headers .h #
# #
################################################################################
# Boost
BOOST = /afs/cern.ch/cms/slc5_amd64_gcc434/external/boost/1.47.0
# Compiler and flags -----------------------------------------------------------
CC = g++
ROOTCFLAGS = $(shell root-config --cflags)
ROOTLIBS = $(shell root-config --libs --glibs)
ROOTINC = $(shell root-config --incdir)
CCFLAGS = -D STANDALONE $(ROOTCFLAGS) -I$(BOOST)/include -O -Wall -g -fPIC
LIBS = $(ROOTLIBS) -L$(BOOST)/lib -l RooFit -lRooFitCore -l RooStats -l Minuit -l Foam -lboost_filesystem -lboost_program_options -lboost_system
# Library name -----------------------------------------------------------------
LIBNAME=CombinedLimit
SONAME=lib$(LIBNAME).so
# Linker and flags -------------------------------------------------------------
LD = g++
ROOTLDFLAGS = $(shell root-config --ldflags)
LDFLAGS = $(ROOTLDFLAGS) -rdynamic -shared -Wl,-soname,$(SONAME) -fPIC
# Dictionaries filename --------------------------------------------------------
DICTNAME=cintdictionary
# Directory structure ----------------------------------------------------------
SRC_DIR = src
INC_DIR = interface
LIB_DIR = lib
PROG_DIR = bin
EXE_DIR = exe
OBJ_DIR = obj
# Useful shortcuts -------------------------------------------------------------
SRCS = $(notdir $(shell ls $(SRC_DIR)/*.cc|grep -v $(DICTNAME) ))
SRCS += $(DICTNAME).cc
OBJS = $(SRCS:.cc=.o)
OBJS += FlexibleInterpVar.o
PROGS = $(notdir $(wildcard ${PROG_DIR}/*.cpp))
EXES = $(PROGS:.cpp=)
# Classes with dicts -----------------------------------------------------------
DICTHDRS= $(notdir $(shell grep -l ClassDef interface/*h))
# Functions with dicts ---------------------------------------------------------
DICTHDRS += th1fmorph.h
#Makefile Rules ---------------------------------------------------------------
.PHONY: clean dirs dict obj lib exe debug
all: dirs dict obj lib exe
#---------------------------------------
dirs:
@mkdir -p $(OBJ_DIR)
@mkdir -p $(LIB_DIR)
@mkdir -p $(EXE_DIR)
#---------------------------------------
dict: dirs $(SRC_DIR)/$(DICTNAME).cc
$(SRC_DIR)/$(DICTNAME).cc : $(SRC_DIR)/LinkDef.h
# @echo "\n*** Generating dictionaries ..."
rootcint -f $(SRC_DIR)/$(DICTNAME).cc -c -p -I$(INC_DIR) -I$(ROOTINC) $(DICTHDRS) $(SRC_DIR)/LinkDef.h
mv $(SRC_DIR)/$(DICTNAME).h $(INC_DIR)/$(DICTNAME).h
#---------------------------------------
obj: dict
# @echo "\n*** Compiling ..."
$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc $(INC_DIR)/%.h
$(CC) $(CCFLAGS) -I $(INC_DIR) -c $< -o $@
# this has cxx extension
$(OBJ_DIR)/FlexibleInterpVar.o: $(SRC_DIR)/FlexibleInterpVar.cxx $(INC_DIR)/FlexibleInterpVar.h
$(CC) $(CCFLAGS) -I $(INC_DIR) -c $< -o $@
# this has no header
$(OBJ_DIR)/tdrstyle.o: $(SRC_DIR)/tdrstyle.cc
$(CC) $(CCFLAGS) -I $(INC_DIR) -c $< -o $@
#---------------------------------------
lib: dirs ${LIB_DIR}/$(SONAME)
${LIB_DIR}/$(SONAME):$(addprefix $(OBJ_DIR)/,$(OBJS))
# @echo "\n*** Building $(SONAME) library:"
$(LD) $(LDFLAGS) $(BOOST_INC) $(addprefix $(OBJ_DIR)/,$(OBJS)) $(SOFLAGS) -o $@ $(LIBS)
#---------------------------------------
exe: $(addprefix $(EXE_DIR)/,$(EXES))
# @echo "\n*** Compiling executables ..."
$(addprefix $(EXE_DIR)/,$(EXES)) : $(addprefix $(PROG_DIR)/,$(PROGS))
$(CC) $< -o $@ $(CCFLAGS) -L $(LIB_DIR) -l $(LIBNAME) -I $(INC_DIR) $(BOOST_INC) $(LIBS)
#---------------------------------------
clean:
# @echo "*** Cleaning all directories and dictionaries ..."
@rm -rf $(OBJ_DIR)
@rm -rf $(EXE_DIR)
@rm -rf $(LIB_DIR)
@rm -rf $(SRC_DIR)/$(DICTNAME).cc
@rm -rf $(INC_DIR)/$(DICTNAME).h
#---------------------------------------
debug:
@echo "OBJS: $(OBJS)"
@echo "SRCS: $(SRCS)"