File indexing completed on 2025-08-03 08:15:06
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 INCLUDES = \
0004 -I$(includedir) \
0005 -I$(OFFLINE_MAIN)/include \
0006 -I`root-config --incdir`
0007
0008 libPhotonJet_la_LDFLAGS = \
0009 -nodefaultlibs \
0010 -L$(libdir) \
0011 -L$(OFFLINE_MAIN)/lib \
0012 `root-config --libs`
0013
0014 lib_LTLIBRARIES = \
0015 libPhotonJet.la
0016
0017 include_HEADERS = \
0018 PhotonJet.h \
0019 PhotonJetLinkDef.h
0020 libPhotonJet_la_SOURCES = \
0021 PhotonJet.C \
0022 PhotonJet_Dict.C
0023 libPhotonJet_la_LIBADD = \
0024 -lg4dst \
0025 -lg4eval \
0026 -lcalo_util \
0027 -lphool
0028
0029 BUILT_SOURCES = \
0030 testexternals.C
0031
0032 noinst_PROGRAMS = \
0033 testexternals
0034
0035 testexternals_LDADD = \
0036 libPhotonJet.la
0037
0038 testexternals.C:
0039 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0040 echo "int main()" >> $@
0041 echo "{" >> $@
0042 echo " return 0;" >> $@
0043 echo "}" >> $@
0044
0045
0046
0047
0048 %_Dict.C: %.h %LinkDef.h
0049 rootcint -f $@ -c $(CINTFLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $^
0050
0051 clean-local:
0052 rm -f *Dict* testexternals.C
0053
0054 testexternals_SOURCES = testexternals.C