Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:12:21

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   -I`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   CaloTemplateFit.h \
0023   CaloUnpackPRDF.h \
0024   EventInfoSummary.h \
0025   GenericUnpackPRDF.h \
0026   PROTOTYPE4_FEM.h \
0027   Prototype4DSTReader.h \
0028   RawTower_Prototype4.h \
0029   RawTower_Temperature.h \
0030   RunInfoUnpackPRDF.h \
0031   TempInfoUnpackPRDF.h
0032 
0033 ROOTDICTS = \
0034   RawTower_Prototype4_Dict.cc \
0035   RawTower_Temperature_Dict.cc
0036 
0037 pcmdir = $(libdir)
0038 nobase_dist_pcm_DATA = \
0039   RawTower_Prototype4_Dict_rdict.pcm \
0040   RawTower_Temperature_Dict_rdict.pcm
0041 
0042 libPrototype4_io_la_SOURCES = \
0043   $(ROOTDICTS) \
0044   PROTOTYPE4_FEM.cc \
0045   RawTower_Prototype4.cc \
0046   RawTower_Temperature.cc
0047 
0048 libPrototype4_la_SOURCES = \
0049   CaloCalibration.cc \
0050   CaloTemplateFit.cc \
0051   CaloUnpackPRDF.cc \
0052   EventInfoSummary.cc \
0053   GenericUnpackPRDF.cc \
0054   Prototype4DSTReader.cc \
0055   RunInfoUnpackPRDF.cc \
0056   TempInfoUnpackPRDF.cc
0057 
0058 libPrototype4_io_la_LIBADD = \
0059   -lcalo_io \
0060   -lphool
0061 
0062 libPrototype4_la_LIBADD = \
0063   libPrototype4_io.la \
0064   -lSubsysReco \
0065   -lfun4all \
0066   -lphparameter
0067 
0068 # Rule for generating CINT dictionaries from class headers.
0069 %_Dict.cc: %.h %LinkDef.h
0070         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0071 
0072 #just to get the dependency
0073 %_Dict_rdict.pcm: %_Dict.cc ;
0074 
0075 
0076 # link check
0077 BUILT_SOURCES = \
0078   testexternals.cc
0079 
0080 noinst_PROGRAMS = \
0081   testexternals_io \
0082   testexternals
0083 
0084 testexternals_io_SOURCES = \
0085   testexternals.cc
0086 
0087 testexternals_io_LDADD = \
0088   libPrototype4_io.la
0089 
0090 testexternals_SOURCES = \
0091   testexternals.cc
0092 
0093 testexternals_LDADD = \
0094   libPrototype4.la
0095 
0096 testexternals.cc:
0097         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0098         echo "int main()" >> $@
0099         echo "{" >> $@
0100         echo "  return 0;" >> $@
0101         echo "}" >> $@
0102 
0103 clean-local:
0104         rm -f *Dict* $(BUILT_SOURCES) *.pcm