File indexing completed on 2025-08-05 08:14:56
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 lib_LTLIBRARIES = \
0004 libroofithm.la
0005
0006
0007 AM_LDFLAGS = \
0008 -L$(libdir) \
0009 -L$(OFFLINE_MAIN)/lib \
0010 -L$(OFFLINE_MAIN)/lib64 \
0011 -L$(ROOTSYS)/lib
0012
0013 AM_LDFLAGS = \
0014 -L$(libdir) \
0015 -L$(OFFLINE_MAIN)/lib
0016
0017 AM_CPPFLAGS = \
0018 -I$(includedir) \
0019 -isystem$(OFFLINE_MAIN)/include \
0020 -isystem$(ROOTSYS)/include
0021
0022 pkginclude_HEADERS = \
0023 RooFitHM.h
0024
0025 libroofithm_la_SOURCES = \
0026 RooFitHM.cc
0027
0028 libroofithm_la_LDFLAGS = \
0029 -L$(libdir) \
0030 -L$(OFFLINE_MAIN)/lib \
0031 -lcalo_io \
0032 -lfun4all \
0033 -lg4detectors_io \
0034 -lphg4hit \
0035 -lqautils
0036
0037
0038
0039
0040
0041 noinst_PROGRAMS = \
0042 testexternals
0043
0044 testexternals_SOURCES = testexternals.C
0045 testexternals_LDADD = \
0046 libroofithm.la \
0047 -L$(ROOTSYS)/lib \
0048 -lRooFit \
0049 -lRooFitCore \
0050 -lMinuit2
0051
0052
0053
0054 testexternals.C:
0055 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0056 echo "int main()" >> $@
0057 echo "{" >> $@
0058 echo " return 0;" >> $@
0059 echo "}" >> $@
0060
0061
0062 %_Dict.cc: %.h %LinkDef.h
0063 rootcint -f $@ @CINTDEFS@ -c $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0064
0065 clean-local:
0066 rm -f $(BUILT_SOURCES)