Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 ##############################################
0002 # please add new classes in alphabetical order
0003 
0004 AUTOMAKE_OPTIONS = foreign
0005 
0006 # list of shared libraries to produce
0007 lib_LTLIBRARIES = \
0008   libfilterevents.la
0009 
0010 AM_CPPFLAGS = \
0011   -I$(includedir) \
0012   -I$(OFFLINE_MAIN)/include \
0013   -I$(ROOTSYS)/include \
0014   -DHomogeneousField
0015 
0016 AM_LDFLAGS = \
0017   -L$(libdir) \
0018   -L$(OFFLINE_MAIN)/lib
0019 
0020 pkginclude_HEADERS = \
0021   FilterEvents.h 
0022 
0023 ROOTDICTS = \
0024   FilterEvents_Dict.cc 
0025 
0026 pcmdir = $(libdir)
0027 nobase_dist_pcm_DATA = \
0028   FilterEvents_Dict_rdict.pcm 
0029 
0030 # sources for io library
0031 libfilterevents_la_SOURCES = \
0032   $(ROOTDICTS) \
0033   FilterEvents.cc 
0034 
0035 libfilterevents_la_LIBADD = \
0036   -L$(libdir) \
0037   -L$(OFFLINE_MAIN)/lib \
0038   -lfun4all \
0039   -lSubsysReco \
0040   -lphool \
0041   -lg4dst 
0042 
0043 # Rule for generating table CINT dictionaries.
0044 %_Dict.cc: %.h %LinkDef.h
0045         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0046 
0047 #just to get the dependency
0048 %_Dict_rdict.pcm: %_Dict.cc ;
0049 
0050 ################################################
0051 # linking tests
0052 
0053 BUILT_SOURCES = testexternals.cc
0054 
0055 noinst_PROGRAMS = \
0056   testexternals_filterevents
0057 
0058 testexternals_filterevents_SOURCES = testexternals.cc
0059 testexternals_filterevents_LDADD = libfilterevents.la
0060 
0061 testexternals.cc:
0062         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0063         echo "int main()" >> $@
0064         echo "{" >> $@
0065         echo "  return 0;" >> $@
0066         echo "}" >> $@
0067 
0068 ################################################
0069 
0070 clean-local:
0071         rm -f *Dict* $(BUILT_SOURCES) *.pcm