forked from sPHENIX-Collaboration/analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
55 lines (42 loc) · 1.22 KB
/
Copy pathMakefile.am
File metadata and controls
55 lines (42 loc) · 1.22 KB
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
AUTOMAKE_OPTIONS = foreign
INCLUDES = \
-I$(includedir) \
-I$(OFFLINE_MAIN)/include \
-I`root-config --incdir`
libSvtxSimPerformanceCheckReco_la_LDFLAGS = \
-nodefaultlibs \
-L$(libdir) \
-L$(OFFLINE_MAIN)/lib \
`root-config --libs`
lib_LTLIBRARIES = \
libSvtxSimPerformanceCheckReco.la
include_HEADERS = \
SvtxSimPerformanceCheckReco.h \
SvtxSimPerformanceCheckRecoLinkDef.h
libSvtxSimPerformanceCheckReco_la_SOURCES = \
SvtxSimPerformanceCheckReco.C \
SvtxSimPerformanceCheckReco_Dict.C
libSvtxSimPerformanceCheckReco_la_LIBADD = \
-lg4dst \
-lg4eval \
-lphool
BUILT_SOURCES = \
testexternals.C
noinst_PROGRAMS = \
testexternals
testexternals_LDADD = \
libSvtxSimPerformanceCheckReco.la
testexternals.C:
echo "//*** this is a generated file. Do not commit, do not edit" > $@
echo "int main()" >> $@
echo "{" >> $@
echo " return 0;" >> $@
echo "}" >> $@
##############################################
# please add new classes in alphabetical order
# Rule for generating CINT dictionaries from class headers.
%_Dict.C: %.h %LinkDef.h
rootcint -f $@ -c $(CINTFLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $^
clean-local:
rm -f *Dict* testexternals.C
testexternals_SOURCES = testexternals.C