Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:18:19

0001 ##############################################
0002 # please add new classes in alphabetical order
0003 
0004 AUTOMAKE_OPTIONS = foreign
0005 
0006 AM_CPPFLAGS = \
0007   -I$(includedir) \
0008   -isystem$(OFFLINE_MAIN)/include \
0009   -isystem`root-config --incdir`
0010 
0011 AM_LDFLAGS = \
0012   -L$(libdir) \
0013   -L$(OFFLINE_MAIN)/lib
0014 
0015 lib_LTLIBRARIES = \
0016    libg4tracking_io.la
0017 
0018 libg4tracking_io_la_LIBADD = \
0019   -lphool \
0020   -lphg4hit \
0021   -ltrack_io
0022 
0023 pkginclude_HEADERS = \
0024   TrkrTruthTrack.h \
0025   EmbRecoMatch.h \
0026   EmbRecoMatchContainer.h \
0027   EmbRecoMatchContainerv1.h \
0028   EmbRecoMatchv1.h \
0029   TrkrTruthTrackContainer.h \
0030   TrkrTruthTrackContainerv1.h \
0031   TrkrTruthTrackv1.h \
0032   TruthClusterizerBase.h
0033 
0034 ROOTDICTS = \
0035   EmbRecoMatchContainer_Dict.cc \
0036   EmbRecoMatchContainerv1_Dict.cc \
0037   EmbRecoMatch_Dict.cc \
0038   EmbRecoMatchv1_Dict.cc \
0039   TrkrTruthTrackContainer_Dict.cc \
0040   TrkrTruthTrackContainerv1_Dict.cc \
0041   TrkrTruthTrack_Dict.cc \
0042   TrkrTruthTrackv1_Dict.cc 
0043 
0044 pcmdir = $(libdir)
0045 nobase_dist_pcm_DATA = \
0046   EmbRecoMatchContainer_Dict_rdict.pcm \
0047   EmbRecoMatchContainerv1_Dict_rdict.pcm \
0048   EmbRecoMatch_Dict_rdict.pcm \
0049   EmbRecoMatchv1_Dict_rdict.pcm \
0050   TrkrTruthTrackContainer_Dict_rdict.pcm \
0051   TrkrTruthTrackContainerv1_Dict_rdict.pcm \
0052   TrkrTruthTrack_Dict_rdict.pcm \
0053   TrkrTruthTrackv1_Dict_rdict.pcm
0054 
0055 libg4tracking_io_la_SOURCES = \
0056   $(ROOTDICTS) \
0057   EmbRecoMatchContainer.cc \
0058   EmbRecoMatchContainerv1.cc \
0059   EmbRecoMatchv1.cc \
0060   TrkrTruthTrack.cc \
0061   TrkrTruthTrackContainer.cc \
0062   TrkrTruthTrackContainerv1.cc \
0063   TruthClusterizerBase.cc \
0064   TrkrTruthTrackv1.cc 
0065 
0066 # Rule for generating table CINT dictionaries.
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 # linking tests
0075 
0076 BUILT_SOURCES = testexternals.cc
0077 
0078 noinst_PROGRAMS = \
0079   testexternals_g4tracking_io
0080 
0081 testexternals_g4tracking_io_SOURCES = testexternals.cc
0082 testexternals_g4tracking_io_LDADD = libg4tracking_io.la
0083 
0084 testexternals.cc:
0085         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0086         echo "int main()" >> $@
0087         echo "{" >> $@
0088         echo "  return 0;" >> $@
0089         echo "}" >> $@
0090 
0091 clean-local:
0092         rm -f *Dict* $(BUILT_SOURCES) *.pcm