File indexing completed on 2025-08-03 08:16:17
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 AM_CPPFLAGS = \
0004 -I$(includedir) \
0005 -isystem$(OFFLINE_MAIN)/include \
0006 -isystem$(ROOTSYS)/include
0007
0008 AM_LDFLAGS = \
0009 -L$(libdir) \
0010 -L$(OFFLINE_MAIN)/lib
0011
0012 pkginclude_HEADERS = \
0013 FermimotionAfterburner.h
0014
0015 lib_LTLIBRARIES = \
0016 libFermimotionAfterburner.la
0017
0018 libFermimotionAfterburner_la_SOURCES = \
0019 FermimotionAfterburner.cc \
0020 FermiMotion.cc
0021
0022 libFermimotionAfterburner_la_LIBADD = \
0023 -lphool \
0024 -lSubsysReco \
0025 -lphhepmc
0026
0027 BUILT_SOURCES = testexternals.cc
0028
0029 noinst_PROGRAMS = \
0030 testexternals
0031
0032 testexternals_SOURCES = testexternals.cc
0033 testexternals_LDADD = libFermimotionAfterburner.la
0034
0035 testexternals.cc:
0036 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0037 echo "int main()" >> $@
0038 echo "{" >> $@
0039 echo " return 0;" >> $@
0040 echo "}" >> $@
0041
0042 clean-local:
0043 rm -f $(BUILT_SOURCES)