Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:11:18

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 INCLUDES = \
0004   -I$(includedir) \
0005   -I$(OFFLINE_MAIN)/include \
0006   -I`root-config --incdir`
0007 
0008 libPHAna_la_LDFLAGS = \
0009   -nodefaultlibs \
0010   -L$(libdir) \
0011   -L$(OFFLINE_MAIN)/lib \
0012   `root-config --libs`
0013 
0014 lib_LTLIBRARIES = \
0015   libPHAna.la
0016 
0017 libPHAna_la_SOURCES = \
0018   PHAna.cc \
0019   PHAnaDict.C
0020 
0021 libPHAna_la_LIBADD = \
0022   -lg4detectors \
0023   -lphg4hit \
0024   -lphool
0025 
0026 install-exec-hook:
0027         @[ $$OSTYPE = darwin ] && ln -sf $(DESTDIR)$(libdir)/libPHAna.dylib $(DESTDIR)$(libdir)/libPHAna.so || true
0028 
0029 BUILT_SOURCES = \
0030   testexternals.C
0031 
0032 noinst_PROGRAMS = \
0033   testexternals
0034 
0035 testexternals_LDADD = \
0036   libPHAna.la
0037 
0038 testexternals.C:
0039         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0040         echo "int main()" >> $@
0041         echo "{" >> $@
0042         echo "  return 0;" >> $@
0043         echo "}" >> $@
0044 
0045 # Rule for generating CINT dictionaries from class headers.
0046 %Dict.C: %.h %LinkDef.h
0047         rootcint -f $@ -c $(CINTFLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $^
0048 
0049 clean-local:
0050         rm -f *Dict*
0051 
0052 testexternals_SOURCES = testexternals.C