File indexing completed on 2025-08-03 08:12:41
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 INCLUDES = \
0004 -I$(includedir) \
0005 -I$(OFFLINE_MAIN)/include \
0006 -I$(OFFLINE_MAIN)/include/eigen3 \
0007 -I`root-config --incdir`
0008
0009 lib_LTLIBRARIES = \
0010 libDirectPhoton.la
0011
0012 AM_CXXFLAGS = -Wall -Werror -msse2
0013
0014 libDirectPhoton_la_LDFLAGS = \
0015 -L$(libdir) \
0016 -L$(OFFLINE_MAIN)/lib
0017
0018 libDirectPhoton_la_LIBADD = \
0019 -lfun4all \
0020 -lg4dst \
0021 -lg4eval \
0022 -lphhepmc
0023
0024
0025
0026
0027 libDirectPhoton_la_SOURCES = \
0028 DirectPhotonPythia.C \
0029 DirectPhotonPythia_Dict.C
0030
0031
0032 %_Dict.C: %.h %LinkDef.h
0033 rootcint -f $@ -c $(DEFAULT_INCLUDES) $(INCLUDES) $^
0034
0035 %_Dict.cpp: %.h %LinkDef.h
0036 rootcint -f $@ -c $(DEFAULT_INCLUDES) $(INCLUDES) $^
0037
0038
0039
0040
0041 noinst_PROGRAMS = testexternals
0042
0043 BUILT_SOURCES = \
0044 testexternals.C
0045
0046 testexternals_LDADD = \
0047 libDirectPhoton.la
0048
0049 testexternals.C:
0050 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0051 echo "int main()" >> $@
0052 echo "{" >> $@
0053 echo " return 0;" >> $@
0054 echo "}" >> $@
0055
0056 clean-local:
0057 rm -f *Dict* testexternals.C