Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:12:49

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 lib_LTLIBRARIES = \
0004     libantitrigger.la
0005 
0006 AM_LDFLAGS = \
0007   -L$(libdir) \
0008   `root-config --libs`
0009 
0010 AM_CPPFLAGS = \
0011   -I$(includedir) \
0012   -I$(ROOTSYS)/include \
0013   -I$(OFFLINE_MAIN)/include 
0014 
0015 pkginclude_HEADERS = \
0016   AntiTrigger.h
0017 
0018 libantitrigger_la_SOURCES = \
0019   AntiTrigger.cc
0020 
0021 libantitrigger_la_LDFLAGS = \
0022   -L$(libdir) \
0023   -L$(OFFLINE_MAIN)/lib \
0024   -I$(ROOTSYS)/include \
0025   -lfun4all \
0026   -lg4eval \
0027   -lkfparticle_sphenix \
0028   -lphhepmc
0029 
0030 # Rule for generating table CINT dictionaries.
0031 %_Dict.cc: %.h %LinkDef.h
0032         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0033 
0034 #just to get the dependency
0035 %_Dict_rdict.pcm: %_Dict.cc ;
0036 
0037 ################################################
0038 # linking tests
0039 
0040 noinst_PROGRAMS = \
0041   testexternals 
0042 
0043 BUILT_SOURCES = testexternals.cc
0044 
0045 testexternals_SOURCES = testexternals.cc
0046 testexternals_LDADD = libantitrigger.la
0047 
0048 testexternals.cc:
0049         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0050         echo "int main()" >> $@
0051         echo "{" >> $@
0052         echo "  return 0;" >> $@
0053         echo "}" >> $@
0054 
0055 clean-local:
0056         rm -f *Dict* $(BUILT_SOURCES) *.pcm