Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2026-04-06 08:08:20

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -isystem$(OFFLINE_MAIN)/include  \
0006   -isystem`root-config --incdir` \
0007   -isystem$(OPT_SPHENIX)/include
0008 
0009 lib_LTLIBRARIES = \
0010    libtriggeremulator_io.la \
0011    libtriggeremulator.la
0012 
0013 AM_LDFLAGS = \
0014   -L$(libdir) \
0015   -L$(OFFLINE_MAIN)/lib
0016 
0017 libtriggeremulator_io_la_LIBADD = \
0018   -lphool \
0019   -lodbc++ \
0020   -lcalo_io \
0021   -lmbd_io \
0022   -lzdcinfo_io
0023 
0024 libtriggeremulator_la_LIBADD = \
0025   libtriggeremulator_io.la \
0026   -lcalotrigger
0027 
0028 pkginclude_HEADERS = \
0029   CaloTriggerEmulatorAnNeutral.h \
0030   TriggerTile.h
0031 
0032 ROOTDICTS = \
0033   TriggerTile_Dict.cc
0034 
0035 pcmdir = $(libdir)
0036 # more elegant way to create pcm files (without listing them)
0037 nobase_dist_pcm_DATA = $(ROOTDICTS:.cc=_rdict.pcm)
0038 
0039 libtriggeremulator_io_la_SOURCES = \
0040   $(ROOTDICTS) \
0041   TriggerTile.cc
0042 
0043 libtriggeremulator_la_SOURCES = \
0044   CaloTriggerEmulatorAnNeutral.cc
0045 
0046 # Rule for generating table CINT dictionaries.
0047 %_Dict.cc: %.h %LinkDef.h
0048         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0049 
0050 #just to get the dependency
0051 %_Dict_rdict.pcm: %_Dict.cc ;
0052 
0053 ################################################
0054 # linking tests
0055 BUILT_SOURCES = testexternals.cc
0056 
0057 noinst_PROGRAMS = \
0058   testexternals_triggeremulator_io \
0059   testexternals_triggeremulator
0060 
0061 testexternals_triggeremulator_io_SOURCES = testexternals.cc
0062 testexternals_triggeremulator_io_LDADD = libtriggeremulator_io.la
0063 
0064 testexternals_triggeremulator_SOURCES = testexternals.cc
0065 testexternals_triggeremulator_LDADD = libtriggeremulator.la
0066 
0067 testexternals.cc:
0068         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0069         echo "int main()" >> $@
0070         echo "{" >> $@
0071         echo "  return 0;" >> $@
0072         echo "}" >> $@
0073 
0074 clean-local:
0075         rm -f *Dict* $(BUILT_SOURCES) *.pcm