Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:22:01

0001 ##############################################
0002 # please add new classes in alphabetical order
0003 
0004 AUTOMAKE_OPTIONS = foreign
0005 
0006 lib_LTLIBRARIES = \
0007   libPrototype3_io.la \
0008   libPrototype3.la
0009 
0010 AM_CPPFLAGS = \
0011   -I$(includedir) \
0012   -I$(OFFLINE_MAIN)/include \
0013   -isystem`root-config --incdir`
0014 
0015 AM_LDFLAGS = \
0016   -L$(libdir) \
0017   -L$(OFFLINE_MAIN)/lib \
0018   `root-config --libs`
0019 
0020 pkginclude_HEADERS = \
0021   CaloCalibration.h \
0022   CaloUnpackPRDF.h \
0023   EventInfoSummary.h \
0024   GenericUnpackPRDF.h \
0025   PROTOTYPE3_FEM.h \
0026   Prototype3DSTReader.h \
0027   RawTower_Prototype3.h \
0028   RawTower_Temperature.h \
0029   RunInfoUnpackPRDF.h \
0030   TempInfoUnpackPRDF.h
0031 
0032 ROOTDICTS = \
0033   RawTower_Prototype3_Dict.cc \
0034   RawTower_Temperature_Dict.cc
0035 
0036 pcmdir = $(libdir)
0037 nobase_dist_pcm_DATA = \
0038   RawTower_Prototype3_Dict_rdict.pcm \
0039   RawTower_Temperature_Dict_rdict.pcm
0040 
0041 libPrototype3_io_la_SOURCES = \
0042   $(ROOTDICTS) \
0043   PROTOTYPE3_FEM.cc \
0044   RawTower_Prototype3.cc \
0045   RawTower_Temperature.cc
0046 
0047 libPrototype3_la_SOURCES = \
0048   Prototype3DSTReader.cc \
0049   CaloUnpackPRDF.cc \
0050   TempInfoUnpackPRDF.cc \
0051   RunInfoUnpackPRDF.cc \
0052   EventInfoSummary.cc \
0053   CaloCalibration.cc \
0054   GenericUnpackPRDF.cc
0055 
0056 libPrototype3_io_la_LIBADD = \
0057   -lcalo_io \
0058   -lphool
0059 
0060 libPrototype3_la_LIBADD = \
0061   libPrototype3_io.la \
0062   -lSubsysReco \
0063   -lfun4all \
0064   -lphparameter
0065 
0066 # Rule for generating CINT dictionaries from class headers.
0067 %_Dict.cc: %.h %LinkDef.h
0068         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0069 
0070 #just to get the dependency
0071 %_Dict_rdict.pcm: %_Dict.cc ;
0072 
0073 BUILT_SOURCES = \
0074   testexternals.cc
0075 
0076 noinst_PROGRAMS = \
0077   testexternals_io \
0078   testexternals
0079 
0080 testexternals_io_SOURCES = \
0081   testexternals.cc
0082 
0083 testexternals_io_LDADD = \
0084   libPrototype3_io.la
0085 
0086 testexternals_SOURCES = \
0087   testexternals.cc
0088 
0089 testexternals_LDADD = \
0090   libPrototype3.la
0091 
0092 testexternals.cc:
0093         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0094         echo "int main()" >> $@
0095         echo "{" >> $@
0096         echo "  return 0;" >> $@
0097         echo "}" >> $@
0098 
0099 clean-local:
0100         rm -f *Dict* $(BUILT_SOURCES) *.pcm