Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:17:37

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 lib_LTLIBRARIES = \
0004     libdecayfinder_io.la \
0005     libdecayfinder.la
0006 
0007 AM_LDFLAGS = \
0008   -L$(libdir) \
0009   -L$(OFFLINE_MAIN)/lib \
0010   `root-config --evelibs`
0011 
0012 AM_CPPFLAGS = \
0013   -I$(includedir) \
0014   -isystem$(OFFLINE_MAIN)/include \
0015   -isystem$(ROOTSYS)/include
0016 
0017 pkginclude_HEADERS = \
0018   DecayFinderContainerBase.h \
0019   DecayFinderContainer_v1.h \
0020   DecayFinder.h
0021 
0022 ROOTDICTS = \
0023   DecayFinderContainerBase_Dict.cc \
0024   DecayFinderContainer_v1_Dict.cc
0025 
0026 pcmdir = $(libdir)
0027 nobase_dist_pcm_DATA = \
0028   DecayFinderContainerBase_Dict_rdict.pcm \
0029   DecayFinderContainer_v1_Dict_rdict.pcm
0030 
0031 libdecayfinder_io_la_SOURCES = \
0032   $(ROOTDICTS) \
0033   DecayFinderContainerBase.cc \
0034   DecayFinderContainer_v1.cc 
0035 
0036 libdecayfinder_la_SOURCES = \
0037   DecayFinder.cc
0038 
0039 libdecayfinder_io_la_LIBADD = \
0040   -lphool
0041 
0042 libdecayfinder_la_LIBADD = \
0043   libdecayfinder_io.la \
0044   -lfun4all \
0045   -lphhepmc \
0046   -lphg4hit
0047 
0048 # Rule for generating table CINT dictionaries.
0049 %_Dict.cc: %.h %LinkDef.h
0050         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0051 
0052 #just to get the dependency
0053 %_Dict_rdict.pcm: %_Dict.cc ;
0054 
0055 ################################################
0056 # linking tests
0057 
0058 noinst_PROGRAMS = \
0059   testexternals \
0060   testexternals_io
0061 
0062 BUILT_SOURCES = testexternals.cc
0063 
0064 testexternals_SOURCES = testexternals.cc
0065 testexternals_LDADD = libdecayfinder.la
0066 
0067 testexternals_io_SOURCES = testexternals.cc
0068 testexternals_io_LDADD = libdecayfinder_io.la
0069 
0070 testexternals.cc:
0071         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0072         echo "int main()" >> $@
0073         echo "{" >> $@
0074         echo "  return 0;" >> $@
0075         echo "}" >> $@
0076 
0077 clean-local:
0078         rm -f *Dict* $(BUILT_SOURCES) *.pcm