Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 ##############################################
0002 # please add new classes in alphabetical order
0003 
0004 AUTOMAKE_OPTIONS = foreign
0005 
0006 lib_LTLIBRARIES = \
0007   libPrototype4_io.la \
0008   libPrototype4.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   PROTOTYPE4_FEM.h \
0026   Prototype4DSTReader.h \
0027   RawTower_Prototype4.h \
0028   RawTower_Temperature.h \
0029   RunInfoUnpackPRDF.h \
0030   TempInfoUnpackPRDF.h
0031 
0032 ROOTDICTS = \
0033   RawTower_Prototype4_Dict.cc \
0034   RawTower_Temperature_Dict.cc
0035 
0036 pcmdir = $(libdir)
0037 nobase_dist_pcm_DATA = \
0038   RawTower_Prototype4_Dict_rdict.pcm \
0039   RawTower_Temperature_Dict_rdict.pcm
0040 
0041 libPrototype4_io_la_SOURCES = \
0042   $(ROOTDICTS) \
0043   PROTOTYPE4_FEM.cc \
0044   RawTower_Prototype4.cc \
0045   RawTower_Temperature.cc
0046 
0047 libPrototype4_la_SOURCES = \
0048   CaloCalibration.cc \
0049   CaloUnpackPRDF.cc \
0050   EventInfoSummary.cc \
0051   GenericUnpackPRDF.cc \
0052   Prototype4DSTReader.cc \
0053   RunInfoUnpackPRDF.cc \
0054   TempInfoUnpackPRDF.cc
0055 
0056 libPrototype4_io_la_LIBADD = \
0057   -lcalo_io \
0058   -lphool
0059 
0060 libPrototype4_la_LIBADD = \
0061   libPrototype4_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 
0074 # link check
0075 BUILT_SOURCES = \
0076   testexternals.cc
0077 
0078 noinst_PROGRAMS = \
0079   testexternals_io \
0080   testexternals
0081 
0082 testexternals_io_SOURCES = \
0083   testexternals.cc
0084 
0085 testexternals_io_LDADD = \
0086   libPrototype4_io.la
0087 
0088 testexternals_SOURCES = \
0089   testexternals.cc
0090 
0091 testexternals_LDADD = \
0092   libPrototype4.la
0093 
0094 testexternals.cc:
0095         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0096         echo "int main()" >> $@
0097         echo "{" >> $@
0098         echo "  return 0;" >> $@
0099         echo "}" >> $@
0100 
0101 clean-local:
0102         rm -f *Dict* $(BUILT_SOURCES) *.pcm