-
Notifications
You must be signed in to change notification settings - Fork 1
/
makefile
205 lines (166 loc) · 7.99 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
.PHONY: clean all extras docs doxygen grsirc
.SECONDARY:
.SECONDEXPANSION:
PLATFORM:=$(shell uname)
# EDIT THIS SECTION
INCLUDES = include
CFLAGS = -g -O3 -Wall -Wextra -pedantic -Wno-unknown-pragmas -Wno-unused-function -Wshadow
#-Wall -Wextra -pedantic -Wno-unused-parameter
LINKFLAGS_PREFIX =
LINKFLAGS_SUFFIX = -L/opt/X11/lib -lX11 -lXpm
SRC_SUFFIX = cxx
# EVERYTHING PAST HERE SHOULD WORK AUTOMATICALLY
ROOT_PYTHON_VERSION=$(shell root-config --python-version)
MATHMORE_INSTALLED:=$(shell root-config --has-mathmore)
XML_INSTALLED:=$(shell root-config --has-xml)
# Functions for determining the files included in a library.
# All src files in the library directory are included.
# If a LinkDef.h file is present in the library directory,
# a dictionary file will also be generated and added to the library.
libdir = $(shell $(FIND) libraries -name $(1) -type d)
lib_src_files = $(shell $(FIND) $(call libdir,$(1)) -name "*.$(SRC_SUFFIX)")
lib_o_files = $(patsubst %.$(SRC_SUFFIX),.build/%.o,$(call lib_src_files,$(1)))
lib_linkdef = $(wildcard $(call libdir,$(1))/LinkDef.h)
lib_dictionary = $(patsubst %/LinkDef.h,.build/%/LibDictionary.o,$(call lib_linkdef,$(1)))
ifeq ($(ROOT_PYTHON_VERSION),2.7)
CFLAGS += -DHAS_CORRECT_PYTHON_VERSION
endif
ifeq ($(PLATFORM),Darwin)
export __APPLE__:= 1
CFLAGS += -DOS_DARWIN -DHAVE_ZLIB
CFLAGS += -I/opt/X11/include -Qunused-arguments
CPP = clang++
SHAREDSWITCH = -Qunused-arguments -shared -undefined dynamic_lookup -dynamiclib -Wl,-install_name,'@executable_path/../lib/'# NO ENDING SPACE
HEAD=ghead
FIND=gfind
LIBRARY_DIRS := $(shell $(FIND) libraries/* -type d)
else
export __LINUX__:= 1
CPP = g++
CFLAGS += -Wl,--no-as-needed
LINKFLAGS_PREFIX += -Wl,--no-as-needed
SHAREDSWITCH = -shared -Wl,-soname,# NO ENDING SPACE
HEAD=head
FIND=find
LIBRARY_DIRS := $(shell $(FIND) libraries/* -type d -maxdepth 2 2> /dev/null | grep -v SourceData | grep -v SRIMData)
endif
ROOTCINT=$(shell command -v rootcint 2> /dev/null)
ifndef $(ROOTCINT)
ROOTCINT=rootcling
else
ROOTCINT=rootcint
endif
COM_COLOR=\033[0;34m
OBJ_COLOR=\033[0;36m
BLD_COLOR=\033[3;34m
LIB_COLOR=\033[3;36m
OK_COLOR=\033[0;32m
ERROR_COLOR=\033[0;31m
WARN_COLOR=\033[0;33m
NO_COLOR=\033[m
OK_STRING="[OK]"
ERROR_STRING="[ERROR]"
WARN_STRING="[WARNING]"
COM_STRING= "Compiling"
BLD_STRING= "Building\ "
COPY_STRING="Copying\ \ "
FIN_STRING="Finished Building"
LIBRARY_NAMES := $(notdir $(LIBRARY_DIRS))
LIBRARY_OUTPUT := $(patsubst %,lib/lib%.so,$(LIBRARY_NAMES))
INCLUDES := $(addprefix -I$(CURDIR)/,$(INCLUDES)) -I$(shell grsi-config --incdir)
CFLAGS += $(shell grsi-config --cflags)
CFLAGS += $(shell root-config --cflags)
CFLAGS += -MMD -MP $(INCLUDES)
LINKFLAGS += $(shell root-config --glibs) -lSpectrum -lMinuit -lGuiHtml -lTreePlayer -lX11 -lXpm -lProof -lTMVA
LINKFLAGS += $(shell grsi-config --all-libs)
LINKFLAGS += $(shell grsi-config --HILData-libs)
# RCFLAGS are being used for rootcint
ifeq ($(MATHMORE_INSTALLED),yes)
CFLAGS += -DHAS_MATHMORE
RCFLAGS += -DHAS_MATHMORE
LINKFLAGS += -lMathMore
endif
ifeq ($(XML_INSTALLED),yes)
CFLAGS += -DHAS_XML
RCFLAGS += -DHAS_XML
LINKFLAGS += -lXMLParser -lXMLIO
endif
LINKFLAGS := $(LINKFLAGS_PREFIX) $(LINKFLAGS) $(LINKFLAGS_SUFFIX) $(CFLAGS)
ROOT_LIBFLAGS := $(shell root-config --cflags --glibs)
GRSI_LIBFLAGS := $(shell grsi-config --cflags --libs)
UTIL_O_FILES := $(patsubst %.$(SRC_SUFFIX),.build/%.o,$(wildcard util/*.$(SRC_SUFFIX)))
MAIN_O_FILES := $(patsubst %.$(SRC_SUFFIX),.build/%.o,$(wildcard src/*.$(SRC_SUFFIX)))
EXE_O_FILES := $(UTIL_O_FILES)
EXECUTABLES := $(patsubst %.o,$(GRSISYS)/bin/%,$(notdir $(EXE_O_FILES)))
HISTOGRAM_SO := $(patsubst histos/%.$(SRC_SUFFIX),lib/lib%.so,$(wildcard histos/*.$(SRC_SUFFIX)))
FILTER_SO := $(patsubst filters/%.$(SRC_SUFFIX),lib/lib%.so,$(wildcard filters/*.$(SRC_SUFFIX)))
HIST_LIBS =
ifdef VERBOSE
run_and_test = @echo $(1) && $(1);
else
run_and_test =@printf "%b%b%b" " $(3)$(4)$(5)" $(notdir $(2)) "$(NO_COLOR)\r"; \
$(1) 2> $(2).log || touch $(2).error; \
if test -e $(2).error; then \
printf "%-60b%b%s%b" "$(3)$(4)$(5)$(2)" "$(ERROR_COLOR)" "$(ERROR_STRING)" "$(NO_COLOR)\n" ; \
cat $(2).log; \
rm -f $(2).log $(2).error; \
exit 1; \
elif test -s $(2).log; then \
printf "%-60b%b%s%b" "$(3)$(4)$(5)$(2)" "$(WARN_COLOR)" "$(WARN_STRING)" "$(NO_COLOR)\n" ; \
cat $(2).log; \
else \
printf "%b%-60s%b%s%b" "$(3)$(4)$(5)" $(notdir $(2)) "$(OK_COLOR)" "$(OK_STRING)" "$(NO_COLOR)\n" ; \
fi; \
rm -f $(2).log $(2).error
endif
all: include/HILDataVersion.h $(LIBRARY_OUTPUT) lib/libHILData.so $(HISTOGRAM_SO) $(EXECUTABLES)
@$(FIND) .build -name "*.pcm" -exec cp {} lib/ \;
@$(FIND) .build -name "*.rootmap" -exec cp {} lib/ \;
@printf "$(OK_COLOR)Compilation successful, $(WARN_COLOR)woohoo!$(NO_COLOR)\n"
@grep "^GRSI.ParserLibrary" ../.grsirc 2>&1 > /dev/null || printf "$(ERROR_COLOR)You need to set GRSI.ParserLibrary in your .grsirc to enable the use of this library!$(NO_COLOR)\n"
docs: doxygen
doxygen:
$(MAKE) -C $@
$(GRSISYS)/bin/%: .build/util/%.o | $(LIBRARY_OUTPUT) include/HILDataVersion.h lib/libHILData.so
$(call run_and_test,$(CPP) $< -o $@ $(LINKFLAGS),$@,$(COM_COLOR),$(COM_STRING),$(OBJ_COLOR) )
lib: include/HILDataVersion.h
@mkdir -p $@
include/HILDataVersion.h:
$(call run_and_test,util/gen_version.sh,$@,$(COM_COLOR),$(COM_STRING),$(OBJ_COLOR) )
lib/lib%.so: $(LIBRARY_OUTPUT) .build/histos/%.o | include/HILDataVersion.h lib
$(call run_and_test,$(CPP) -fPIC $^ $(SHAREDSWITCH)lib$*.so $(ROOT_LIBFLAGS) -Llib $(addprefix -l,$(LIBRARY_NAMES)) -o $@,$@,$(BLD_COLOR),$(BLD_STRING),$(OBJ_COLOR) )
lib/lib%.so: $$(call lib_o_files,%) $$(call lib_dictionary,%) | include/HILDataVersion.h lib
$(call run_and_test,$(CPP) -fPIC $^ $(SHAREDSWITCH)lib$*.so $(ROOT_LIBFLAGS) $(GRSI_LIBFLAGS) -o $@,$@,$(BLD_COLOR),$(BLD_STRING),$(OBJ_COLOR) )
lib/libHILData.so: $(LIBRARY_OUTPUT) $(MAIN_O_FILES) | include/HILDataVersion.h
$(call run_and_test,$(CPP) -fPIC $(shell $(FIND) .build/libraries -name "*.o") $(SHAREDSWITCH)lib$*.so $(ROOT_LIBFLAGS) $(MAIN_O_FILES) -o $@,$@,$(BLD_COLOR),$(BLD_STRING),$(OBJ_COLOR) )
.build/%.o: %.$(SRC_SUFFIX)
@mkdir -p $(dir $@)
$(call run_and_test,$(CPP) -fPIC -c $< -o $@ $(CFLAGS),$@,$(COM_COLOR),$(COM_STRING),$(OBJ_COLOR) )
dict_header_files = $(addprefix $(CURDIR)/include/,$(subst //,,$(shell $(HEAD) $(1) -n 1 2> /dev/null)))
find_linkdef = $(shell $(FIND) $(1) -name "*LinkDef.h")
# In order for all function names to be unique, rootcint requires unique output names.
# Therefore, usual wildcard rules are insufficient.
# Eval is more powerful, but is less convenient to use.
define library_template
.build/$(1)/$(notdir $(1))Dict.cxx: $(1)/LinkDef.h $$(call dict_header_files,$(1)/LinkDef.h)
@mkdir -p $$(dir $$@)
$$(call run_and_test,$$(ROOTCINT) -f $$@ -c $$(INCLUDES) $$(RCFLAGS) -s .build/$(1)/$(notdir $(1)) -multiDict -rml lib$(notdir $(1)).so -rmf .build/$(1)/$(notdir $(1)).rootmap -p $$(notdir $$(filter-out $$<,$$^)) $$<,$$@,$$(COM_COLOR),$$(BLD_STRING) ,$$(OBJ_COLOR))
.build/$(1)/LibDictionary.o: .build/$(1)/$(notdir $(1))Dict.cxx
$$(call run_and_test,$$(CPP) -fPIC -c $$< -o $$@ $$(CFLAGS),$$@,$$(COM_COLOR),$$(COM_STRING),$$(OBJ_COLOR) )
endef
$(foreach lib,$(LIBRARY_DIRS),$(eval $(call library_template,$(lib))))
-include $(shell $(FIND) .build -name '*.d' 2> /dev/null)
html: all
@printf " ${COM_COLOR}Building ${OBJ_COLOR} HTML Documentation ${NO_COLOR}\n"
@cp -r include grsisort
@grsisort -q -l --work_harder util/html_generator.C #>/dev/null
@$(RM) -r grsisort
@$(RM) tempfile.out
clean:
@printf "\n$(WARN_COLOR)Cleaning up$(NO_COLOR)\n\n"
@-$(RM) -rf .build lib
@-$(RM) -f $(EXECUTABLES)
@-$(RM) -rf libraries/*.so libraries/*.pcm #this is here for cleaning up libraries from pre GRSI 3.0
cleaner: clean
@printf "\nEven more clean up\n\n"
@-$(RM) -rf htmldoc