Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-12-17 09:22:15

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 # more elegant way to create pcm files (without listing them)
0046 nobase_dist_pcm_DATA = $(ROOTDICTS:.cc=_rdict.pcm)
0047 
0048 libg4tracking_io_la_SOURCES = \
0049   $(ROOTDICTS) \
0050   EmbRecoMatchContainer.cc \
0051   EmbRecoMatchContainerv1.cc \
0052   EmbRecoMatchv1.cc \
0053   TrkrTruthTrack.cc \
0054   TrkrTruthTrackContainer.cc \
0055   TrkrTruthTrackContainerv1.cc \
0056   TruthClusterizerBase.cc \
0057   TrkrTruthTrackv1.cc 
0058 
0059 # Rule for generating table CINT dictionaries.
0060 %_Dict.cc: %.h %LinkDef.h
0061         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0062 
0063 #just to get the dependency
0064 %_Dict_rdict.pcm: %_Dict.cc ;
0065 
0066 ################################################
0067 # linking tests
0068 
0069 BUILT_SOURCES = testexternals.cc
0070 
0071 noinst_PROGRAMS = \
0072   testexternals_g4tracking_io
0073 
0074 testexternals_g4tracking_io_SOURCES = testexternals.cc
0075 testexternals_g4tracking_io_LDADD = libg4tracking_io.la
0076 
0077 testexternals.cc:
0078         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0079         echo "int main()" >> $@
0080         echo "{" >> $@
0081         echo "  return 0;" >> $@
0082         echo "}" >> $@
0083 
0084 clean-local:
0085         rm -f *Dict* $(BUILT_SOURCES) *.pcm