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   libfiltereventsupsilon.la
0009 
0010 AM_CPPFLAGS = \
0011   -I$(includedir) \
0012   -I$(OFFLINE_MAIN)/include \
0013   -I$(ROOTSYS)/include
0014 
0015 AM_LDFLAGS = \
0016   -L$(libdir) \
0017   -L$(OFFLINE_MAIN)/lib
0018 
0019 pkginclude_HEADERS = \
0020   FilterEventsUpsilon.h 
0021 
0022 ROOTDICTS = \
0023   FilterEventsUpsilon_Dict.cc 
0024 
0025 pcmdir = $(libdir)
0026 nobase_dist_pcm_DATA = \
0027   FilterEventsUpsilon_Dict_rdict.pcm 
0028 
0029 # sources for io library
0030 libfiltereventsupsilon_la_SOURCES = \
0031   $(ROOTDICTS) \
0032   FilterEventsUpsilon.cc 
0033 
0034 libfiltereventsupsilon_la_LIBADD = \
0035   -L$(libdir) \
0036   -L$(OFFLINE_MAIN)/lib \
0037   -lfun4all \
0038   -lSubsysReco \
0039   -lphool \
0040   -lg4dst 
0041 
0042 # Rule for generating table CINT dictionaries.
0043 %_Dict.cc: %.h %LinkDef.h
0044         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0045 
0046 #just to get the dependency
0047 %_Dict_rdict.pcm: %_Dict.cc ;
0048 
0049 ################################################
0050 # linking tests
0051 
0052 BUILT_SOURCES = testexternals.cc
0053 
0054 noinst_PROGRAMS = \
0055   testexternals_filtereventsupsilon
0056 
0057 testexternals_filtereventsupsilon_SOURCES = testexternals.cc
0058 testexternals_filtereventsupsilon_LDADD = libfiltereventsupsilon.la
0059 
0060 testexternals.cc:
0061         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0062         echo "int main()" >> $@
0063         echo "{" >> $@
0064         echo "  return 0;" >> $@
0065         echo "}" >> $@
0066 
0067 ################################################
0068 
0069 clean-local:
0070         rm -f *Dict* $(BUILT_SOURCES) *.pcm