File indexing completed on 2025-08-05 08:12:43
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 INCLUDES = \
0004 -I$(includedir) \
0005 -I$(MY_INSTALL)/include \
0006 -I$(OFFLINE_MAIN)/include \
0007 -I$(OFFLINE_MAIN)/include/eigen3 \
0008 -I`root-config --incdir`
0009
0010
0011
0012
0013
0014 lib_LTLIBRARIES = \
0015 libBDiJetModule.la
0016
0017 AM_CXXFLAGS = -Wall -Werror -msse2 -DRAVE -DRaveDllExport=
0018
0019 AM_LDFLAGS = \
0020 -L$(libdir) \
0021 -L$(MY_INSTALL)/lib \
0022 -L$(OFFLINE_MAIN)/lib
0023
0024 libBDiJetModule_la_SOURCES = \
0025 BDiJetModule.C \
0026 BDiJetModule_Dict.C
0027
0028
0029 libBDiJetModule_la_LIBADD = \
0030 -lfun4all \
0031 -lg4detectors \
0032 -lg4dst \
0033 -lg4eval \
0034 -lg4hough_io \
0035 -lg4jets \
0036 -lgenfit2 \
0037 -lgenfit2exp \
0038 -lPHGenFit \
0039 -lphhepmc
0040
0041
0042
0043
0044 %_Dict.C: %.h %LinkDef.h
0045 rootcint -f $@ -c $(DEFAULT_INCLUDES) $(INCLUDES) $^
0046
0047 %_Dict.cpp: %.h %LinkDef.h
0048 rootcint -f $@ -c $(DEFAULT_INCLUDES) $(INCLUDES) $^
0049
0050
0051
0052
0053 noinst_PROGRAMS = testexternals
0054
0055 BUILT_SOURCES = \
0056 testexternals.C
0057
0058 testexternals_LDADD = \
0059 libBDiJetModule.la
0060
0061 testexternals_SOURCES = testexternals.C
0062
0063 testexternals.C:
0064 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0065 echo "int main()" >> $@
0066 echo "{" >> $@
0067 echo " return 0;" >> $@
0068 echo "}" >> $@
0069
0070 clean-local:
0071 rm -f *Dict* testexternals.C