Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-10-16 08:21:02

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 lib_LTLIBRARIES = \
0004     libtruthneutralmeson_io.la \
0005     libtruthneutralmeson.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   TruthNeutralMeson.h \
0019   TruthNeutralMesonv1.h \
0020   TruthNeutralMesonContainer.h \
0021   TruthNeutralMesonBuilder.h 
0022 
0023 ROOTDICTS = \
0024   TruthNeutralMeson_Dict.cc \
0025   TruthNeutralMesonv1_Dict.cc \
0026   TruthNeutralMesonContainer_Dict.cc
0027 
0028 pcmdir = $(libdir)
0029 nobase_dist_pcm_DATA = \
0030   TruthNeutralMeson_Dict_rdict.pcm \
0031   TruthNeutralMesonv1_Dict_rdict.pcm \
0032   TruthNeutralMesonContainer_Dict_rdict.pcm
0033 
0034 libtruthneutralmeson_io_la_SOURCES = \
0035   $(ROOTDICTS) \
0036   TruthNeutralMeson.cc \
0037   TruthNeutralMesonv1.cc \
0038   TruthNeutralMesonContainer.cc
0039 
0040 libtruthneutralmeson_la_SOURCES = \
0041   TruthNeutralMesonBuilder.cc 
0042 
0043 libtruthneutralmeson_io_la_LIBADD = \
0044   -lphool
0045 
0046 libtruthneutralmeson_la_LIBADD = \
0047   libtruthneutralmeson_io.la \
0048   -lfun4all \
0049   -lphhepmc \
0050   -lphg4hit
0051 
0052 # Rule for generating table CINT dictionaries.
0053 %_Dict.cc: %.h %LinkDef.h
0054         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0055 
0056 #just to get the dependency
0057 %_Dict_rdict.pcm: %_Dict.cc ;
0058 
0059 ################################################
0060 # linking tests
0061 
0062 noinst_PROGRAMS = \
0063   testexternals \
0064   testexternals_io
0065 
0066 BUILT_SOURCES = testexternals.cc
0067 
0068 testexternals_SOURCES = testexternals.cc
0069 testexternals_LDADD = libtruthneutralmeson.la
0070 
0071 testexternals_io_SOURCES = testexternals.cc
0072 testexternals_io_LDADD = libtruthneutralmeson_io.la
0073 
0074 testexternals.cc:
0075         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0076         echo "int main()" >> $@
0077         echo "{" >> $@
0078         echo "  return 0;" >> $@
0079         echo "}" >> $@
0080 
0081 clean-local:
0082         rm -f *Dict* $(BUILT_SOURCES) *.pcm