File indexing completed on 2025-08-03 08:11:31
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 ACLOCAL_AMFLAGS = -I m4
0004
0005 lib_LTLIBRARIES = \
0006 libMBDStudy.la
0007
0008 AM_CPPFLAGS = \
0009 -I$(includedir) \
0010 -I$(OFFLINE_MAIN)/include \
0011 -I`root-config --incdir`
0012
0013 AM_LDFLAGS = \
0014 -L$(libdir) \
0015 -L$(OFFLINE_MAIN)/lib
0016
0017 include_HEADERS = \
0018 MBDStudy.h
0019
0020 ROOTDICTS = \
0021 MBDStudy_Dict.C
0022
0023 pcmdir = $(libdir)
0024 nobase_dist_pcm_DATA = \
0025 MBDStudy_Dict_rdict.pcm
0026
0027 libMBDStudy_la_SOURCES = \
0028 $(ROOTDICTS) \
0029 MBDStudy.cc
0030
0031 libMBDStudy_la_LIBADD = \
0032 -lphool \
0033 -lSubsysReco \
0034 -lg4detectors \
0035 -lmbd_io \
0036 -lphg4hit
0037
0038 libMBDStudy_la_LDFLAGS = \
0039 -L$(libdir) \
0040 -L$(OFFLINE_MAIN)/lib \
0041 `root-config --libs`
0042
0043
0044 %_Dict.C: %.h %LinkDef.h
0045 rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0046
0047
0048
0049 %_Dict_rdict.pcm: %_Dict.C ;
0050
0051
0052
0053
0054 BUILT_SOURCES = \
0055 testexternals.C
0056
0057 noinst_PROGRAMS = \
0058 testexternals
0059
0060 testexternals_SOURCES = testexternals.C
0061
0062 testexternals_LDADD = \
0063 libMBDStudy.la
0064
0065 testexternals.C:
0066 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0067 echo "int main()" >> $@
0068 echo "{" >> $@
0069 echo " return 0;" >> $@
0070 echo "}" >> $@
0071
0072
0073 clean-local:
0074 rm -f *Dict* $(BUILT_SOURCES) *.pcm
0075