Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:22:03

0001 ##############################################
0002 # please add new classes in alphabetical order
0003 
0004 AUTOMAKE_OPTIONS = foreign
0005 
0006 lib_LTLIBRARIES = \
0007   libtpc2019_io.la \
0008   libtpc2019.la
0009 
0010 AM_CXXFLAGS = \
0011  -DRAVE -DRaveDllExport=
0012 
0013 AM_CPPFLAGS = \
0014   -I$(includedir) \
0015   -I$(OFFLINE_MAIN)/include \
0016   -I$(OFFLINE_MAIN)/include/eigen3 \
0017   -I`root-config --incdir`
0018 
0019 AM_LDFLAGS = \
0020   -L$(libdir) \
0021   -L$(OFFLINE_MAIN)/lib \
0022   -L$(OFFLINE_MAIN)/lib64 \
0023   `root-config --libs`
0024 
0025 pkginclude_HEADERS = \
0026   TpcPrototypeTrack.h \
0027   TpcPrototypeCluster.h \
0028   TpcPrototypeClusterizer.h \
0029   TpcPrototypeGenFitTrkFinder.h \
0030   TpcPrototypeGenFitTrkFitter.h \
0031   TpcPrototypeDefs.h \
0032   TpcPrototypeUnpacker.h
0033 
0034 ROOTDICTS = \
0035   TpcPrototypeTrack_Dict.cc \
0036   TpcPrototypeCluster_Dict.cc \
0037   TpcPrototypeDefs_Dict.cc
0038 
0039 pcmdir = $(libdir)
0040 nobase_dist_pcm_DATA =  \
0041   TpcPrototypeTrack_Dict_rdict.pcm \
0042   TpcPrototypeCluster_Dict_rdict.pcm \
0043   TpcPrototypeDefs_Dict_rdict.pcm \
0044   TpcPrototypeUnpacker_Dict_rdict.pcm
0045 
0046 libtpc2019_io_la_SOURCES = \
0047   $(ROOTDICTS) \
0048   TpcPrototypeTrack.cc \
0049   TpcPrototypeCluster.cc \
0050   TpcPrototypeDefs.cc
0051 
0052 libtpc2019_la_SOURCES = \
0053   TpcPrototypeClusterizer.cc \
0054   TpcPrototypeGenFitTrkFinder.cc  \
0055   TpcPrototypeGenFitTrkFitter.cc  \
0056   TpcPrototypeUnpacker.cc  \
0057   TpcPrototypeUnpacker_Dict.cc
0058 
0059 libtpc2019_io_la_LIBADD = \
0060   -ltpc_io \
0061   -ltrack_reco_io \
0062   -lphool
0063 
0064 libtpc2019_la_LIBADD = \
0065   libtpc2019_io.la \
0066   -lgsl \
0067   -lgslcblas \
0068   -lgenfit2 \
0069   -lgenfit2exp \
0070   -lPHGenFit \
0071   -ltrackbase_historic_io \
0072   -lphparameter \
0073   -lphgeom \
0074   -ltpc
0075 
0076 # Rule for generating CINT dictionaries from class headers.
0077 %_Dict.cc: %.h %LinkDef.h
0078         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0079 
0080 #just to get the dependency
0081 %_Dict_rdict.pcm: %_Dict.cc ;
0082 
0083 
0084 # link check
0085 BUILT_SOURCES = \
0086   testexternals.cc
0087 
0088 noinst_PROGRAMS = \
0089   testexternals_io \
0090   testexternals
0091 
0092 testexternals_io_SOURCES = \
0093   testexternals.cc
0094 
0095 testexternals_io_LDADD = \
0096   libtpc2019_io.la
0097 
0098 testexternals_SOURCES = \
0099   testexternals.cc
0100 
0101 testexternals_LDADD = \
0102   libtpc2019.la
0103 
0104 testexternals.cc:
0105         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0106         echo "int main()" >> $@
0107         echo "{" >> $@
0108         echo "  return 0;" >> $@
0109         echo "}" >> $@
0110 
0111 clean-local:
0112         rm -f *Dict* $(BUILT_SOURCES) *.pcm