Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 ##############################################
0002 # please add new classes in alphabetical order
0003 
0004 AUTOMAKE_OPTIONS = foreign
0005 
0006 # list of shared libraries to produce
0007 lib_LTLIBRARIES = \
0008   libeventmix.la
0009 
0010 AM_CPPFLAGS = \
0011   -I$(includedir) \
0012   -I$(OFFLINE_MAIN)/include \
0013   -I$(ROOTSYS)/include
0014 
0015 AM_LDFLAGS = \
0016   -L$(libdir) \
0017   -L$(OFFLINE_MAIN)/lib
0018 
0019 pkginclude_HEADERS = \
0020   PairMaker.h \
0021   sPHElectron.h \
0022   sPHElectronv1.h \
0023   sPHElectronPair.h \
0024   sPHElectronPairv1.h \
0025   sPHElectronPairContainer.h \
0026   sPHElectronPairContainerv1.h 
0027 
0028 ROOTDICTS = \
0029   PairMaker_Dict.cc \
0030   sPHElectron_Dict.cc \
0031   sPHElectronv1_Dict.cc \
0032   sPHElectronPair_Dict.cc \
0033   sPHElectronPairv1_Dict.cc \ 
0034   sPHElectronPairContainer_Dict.cc \
0035   sPHElectronPairContainerv1_Dict.cc 
0036 
0037 pcmdir = $(libdir)
0038 nobase_dist_pcm_DATA = \
0039   PairMaker_Dict_rdict.pcm \
0040   sPHElectron_Dict_rdict.pcm \
0041   sPHElectronv1_Dict_rdict.pcm \
0042   sPHElectronPair_Dict_rdict.pcm \
0043   sPHElectronPairv1_Dict_rdict.pcm \
0044   sPHElectronPairContainer_Dict_rdict.pcm \
0045   sPHElectronPairContainerv1_Dict_rdict.pcm 
0046 
0047 # sources for io library
0048 libeventmix_la_SOURCES = \
0049   $(ROOTDICTS) \
0050   PairMaker.cc \
0051   sPHElectronv1.cc \
0052   sPHElectronPairv1.cc \
0053   sPHElectronPairContainerv1.cc 
0054 
0055 libeventmix_la_LIBADD = \
0056   -L$(libdir) \
0057   -L$(OFFLINE_MAIN)/lib \
0058   -lfun4all \
0059   -lg4dst \
0060   -lSubsysReco \
0061   -lphg4hit \
0062   -ltrackpid \
0063   -lphool 
0064 
0065 # Rule for generating table CINT dictionaries.
0066 %_Dict.cc: %.h %LinkDef.h
0067         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0068 
0069 #just to get the dependency
0070 %_Dict_rdict.pcm: %_Dict.cc ;
0071 
0072 ################################################
0073 # linking tests
0074 
0075 BUILT_SOURCES = testexternals.cc
0076 
0077 noinst_PROGRAMS = \
0078   testexternals_eventmix
0079 
0080 testexternals_eventmix_SOURCES = testexternals.cc
0081 testexternals_eventmix_LDADD = libeventmix.la
0082 
0083 testexternals.cc:
0084         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0085         echo "int main()" >> $@
0086         echo "{" >> $@
0087         echo "  return 0;" >> $@
0088         echo "}" >> $@
0089 
0090 ################################################
0091 
0092 clean-local:
0093         rm -f *Dict* $(BUILT_SOURCES) *.pcm