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