Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:13:03

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 INCLUDES = \
0004   -I$(includedir) \
0005   -I$(OFFLINE_MAIN)/include \
0006   -I$(OFFLINE_MAIN)/geant4/include \
0007   -I`root-config --incdir`
0008 
0009 libEpFinder_la_LDFLAGS = \
0010   -nodefaultlibs \
0011   -L$(libdir) \
0012   -L$(OFFLINE_MAIN)/lib \
0013   `root-config --libs`
0014 
0015 lib_LTLIBRARIES = \
0016   libEpFinder.la
0017 
0018 libEpFinder_la_SOURCES = \
0019   EpFinderEval.cc \
0020   EpFinderEvalDict.C \
0021   EpFinder.C \
0022   EpInfo.C 
0023 
0024 libEpFinder_la_LIBADD = \
0025   -lg4detectors \
0026   -lphg4hit \
0027   -lg4eval \
0028   -lphool 
0029 
0030 pkginclude_HEADERS = \
0031   EpFinderEval.h \
0032   EpFinder.h \
0033   EpInfo.h      
0034 
0035 pcmdir = $(libdir)
0036 nobase_dist_pcm_DATA = \
0037   EpFinderEvalDict_rdict.pcm
0038 
0039 install-exec-hook:
0040         @[ $$OSTYPE = darwin ] && ln -sf $(DESTDIR)$(libdir)/libEpFinder.dylib $(DESTDIR)$(libdir)/libEpFinder.so || true
0041 
0042 BUILT_SOURCES = \
0043   testexternals.C
0044 
0045 noinst_PROGRAMS = \
0046   testexternals
0047 
0048 testexternals_LDADD = \
0049   libEpFinder.la
0050 
0051 testexternals.C:
0052         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0053         echo "int main()" >> $@
0054         echo "{" >> $@
0055         echo "  return 0;" >> $@
0056         echo "}" >> $@
0057 
0058 # Rule for generating CINT dictionaries from class headers.
0059 %Dict.C: %.h %LinkDef.h
0060         rootcint -f $@ -c $(CINTDEFS) -c $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0061 
0062 #just to get the dependency
0063 %Dict_rdict.pcm: %Dict.cc ;
0064 
0065 clean-local:
0066         rm -f *Dict* $(BUILT_SOURCES) *.pcm
0067 
0068 testexternals_SOURCES = testexternals.C