Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:19:57

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 lib_LTLIBRARIES = \
0004     libhftrackefficiency.la
0005 
0006 AM_LDFLAGS = \
0007   -L$(libdir) \
0008   -L$(OFFLINE_MAIN)/lib \
0009   `root-config --evelibs`
0010 
0011 AM_CPPFLAGS = \
0012   -I$(includedir) \
0013   -isystem$(OFFLINE_MAIN)/include \
0014   -isystem$(ROOTSYS)/include
0015 
0016 pkginclude_HEADERS = \
0017   HFTrackEfficiency.h
0018 
0019 libhftrackefficiency_la_SOURCES = \
0020   HFTrackEfficiency.cc
0021 
0022 libhftrackefficiency_la_LIBADD = \
0023   -lfun4all \
0024   -ldecayfinder_io \
0025   -ltrackbase_historic_io \
0026   -lphg4hit \
0027   -lphhepmc
0028 
0029 ################################################
0030 # linking tests
0031 
0032 noinst_PROGRAMS = \
0033   testexternals
0034 
0035 BUILT_SOURCES = testexternals.cc
0036 
0037 testexternals_SOURCES = testexternals.cc
0038 testexternals_LDADD = libhftrackefficiency.la
0039 
0040 testexternals.cc:
0041         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0042         echo "int main()" >> $@
0043         echo "{" >> $@
0044         echo "  return 0;" >> $@
0045         echo "}" >> $@
0046 
0047 clean-local:
0048         rm -f $(BUILT_SOURCES)