File indexing completed on 2025-08-05 08:21:35
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 lib_LTLIBRARIES = \
0004 libanatutorial.la
0005
0006 AM_LDFLAGS = \
0007 -L$(libdir) \
0008 -L$(OFFLINE_MAIN)/lib
0009
0010 AM_CPPFLAGS = \
0011 -I$(includedir) \
0012 -isystem$(OFFLINE_MAIN)/include \
0013 -isystem`root-config --incdir`
0014
0015 pkginclude_HEADERS = \
0016 AnaTutorial.h
0017
0018 libanatutorial_la_SOURCES = \
0019 AnaTutorial.cc
0020
0021 libanatutorial_la_LDFLAGS = \
0022 -L$(libdir) \
0023 -L$(OFFLINE_MAIN)/lib \
0024 -lcalo_io \
0025 -lfun4all \
0026 -lg4detectors_io \
0027 -lphg4hit \
0028 -lg4dst \
0029 -lg4eval
0030
0031
0032
0033
0034
0035 BUILT_SOURCES = testexternals.cc
0036
0037 noinst_PROGRAMS = \
0038 testexternals
0039
0040 testexternals_SOURCES = testexternals.cc
0041 testexternals_LDADD = libanatutorial.la
0042
0043 testexternals.cc:
0044 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0045 echo "int main()" >> $@
0046 echo "{" >> $@
0047 echo " return 0;" >> $@
0048 echo "}" >> $@
0049
0050 clean-local:
0051 rm -f $(BUILT_SOURCES)