Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2026-08-30 08:14:26

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$(ROOTSYS)/include \
0010   -isystem$(OPT_SPHENIX)/include
0011 
0012 
0013 AM_LDFLAGS = \
0014   -L$(libdir) \
0015   -L$(ROOTSYS)/lib \
0016   -L$(OFFLINE_MAIN)/lib \
0017   -L$(OFFLINE_MAIN)/lib64
0018 
0019 # List of shared libraries to produce
0020 lib_LTLIBRARIES = \
0021   libcentralmembranestripematching.la
0022 
0023 libcentralmembranestripematching_la_LIBADD = \
0024   -lFROG \
0025   -lffaobjects \
0026   -lphool \
0027   -lodbc++ \
0028   -lSubsysReco \
0029   -lg4detectors_io \
0030   -ltrack_io \
0031   -ltrackbase_historic_io \
0032   -ltrack_reco \
0033   -ltpc_io
0034 
0035 pkginclude_HEADERS = \
0036   TpcCentralMembraneStripeMatching.h \
0037   parameters.h \
0038   helpers.h \
0039   StripeComparison.h \
0040   StripeDetector.h \
0041   StripeMatchingTypes.h \
0042   GlobalFieldFitter.h
0043 
0044 libcentralmembranestripematching_la_SOURCES = \
0045   TpcCentralMembraneStripeMatching.cc \
0046   parameters.cc \
0047   helpers.cc \
0048   StripeComparison.cc \
0049   StripeDetector.cc \
0050   GlobalFieldFitter.cc
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 BUILT_SOURCES = \
0063   testexternals.cc
0064 
0065 noinst_PROGRAMS = \
0066   testexternals_centralmembranestripematching
0067 
0068 testexternals_centralmembranestripematching_SOURCES = testexternals.cc
0069 testexternals_centralmembranestripematching_LDADD = libcentralmembranestripematching.la
0070 
0071 testexternals.cc:
0072         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0073         echo "int main()" >> $@
0074         echo "{" >> $@
0075         echo "  return 0;" >> $@
0076         echo "}" >> $@
0077 
0078 ##############################################
0079 # please add new classes in alphabetical order
0080 
0081 clean-local:
0082         rm -f $(BUILT_SOURCES)