File indexing completed on 2025-08-07 08:14:13
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 AM_CPPFLAGS = \
0004 -I$(includedir) \
0005 -I$(OFFLINE_MAIN)/include \
0006 -I$(ROOTSYS)/include
0007
0008 AM_LDFLAGS = \
0009 -L$(libdir) \
0010 -L$(OFFLINE_MAIN)/lib \
0011 -L$(OFFLINE_MAIN)/lib64\
0012 -lHepMC \
0013 -lCLHEP \
0014 -lg4eval
0015
0016 pkgincludedir = $(includedir)/JESMCTreeGen
0017
0018 pkginclude_HEADERS = \
0019 JESMCTreeGen.h \
0020 JESMCTreeGenLinkDef.h
0021
0022 pcmdir = $(libdir)
0023
0024 lib_LTLIBRARIES = \
0025 libJESMCTreeGen.la
0026
0027 libJESMCTreeGen_la_SOURCES = \
0028 JESMCTreeGen.cc
0029
0030
0031 libJESMCTreeGen_la_LIBADD = \
0032 -lcalotrigger_io \
0033 -lcalotrigger \
0034 -lcalo_io \
0035 -lmbd_io \
0036 -lCLHEP \
0037 -lffarawmodules \
0038 -lglobalvertex \
0039 -lglobalvertex_io \
0040 -lphool \
0041 -lSubsysReco \
0042 -lfun4all \
0043 -lHepMC
0044
0045 %_Dict.cc: %.h %LinkDef.h
0046 rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0047
0048 %_Dict_rdict.pcm: %_Dict.cc ;
0049
0050 BUILT_SOURCES = testexternals.cc
0051
0052 noinst_PROGRAMS = \
0053 testexternals
0054
0055 testexternals_SOURCES = testexternals.cc
0056 testexternals_LDADD = libJESMCTreeGen.la
0057
0058 testexternals.cc:
0059 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0060 echo "int main()" >> $@
0061 echo "{" >> $@
0062 echo " return 0;" >> $@
0063 echo "}" >> $@
0064
0065 clean-local:
0066 rm -f $(BUILT_SOURCES)