File indexing completed on 2025-08-05 08:15:08
0001
0002
0003
0004 AUTOMAKE_OPTIONS = foreign
0005
0006 AM_CPPFLAGS = \
0007 -I$(includedir) \
0008 -I$(OFFLINE_MAIN)/include \
0009 -I`root-config --incdir`
0010
0011 lib_LTLIBRARIES = \
0012 libtpcdaq.la \
0013 libtpcdaq_io.la
0014
0015 libtpcdaq_la_LDFLAGS = \
0016 -L$(libdir) \
0017 -L$(OFFLINE_MAIN)/lib
0018
0019 libtpcdaq_la_LIBADD = \
0020 -lfun4all \
0021 -lg4dst \
0022 -lphool
0023
0024 libtpcdaq_io_la_LIBADD = \
0025 -lphool
0026
0027 pkginclude_HEADERS = \
0028 TPCDaqDefs.h
0029
0030 ROOTDICTS = \
0031 TPCFEETestRecov1_Dict.cc
0032
0033 pcmdir = $(libdir)
0034 nobase_dist_pcm_DATA = \
0035 TPCFEETestRecov1_Dict_rdict.pcm
0036
0037 libtpcdaq_la_SOURCES = \
0038 TPCIntegratedCharge.cc \
0039 TPCDataStreamEmulator.cc \
0040 TPCDaqDefs.cc \
0041 TPCDaqDefs_Dict.cc
0042
0043 libtpcdaq_io_la_SOURCES = \
0044 $(ROOTDICTS) \
0045 TPCFEETestRecov1.cc
0046
0047
0048 %_Dict.cc: %.h %LinkDef.h
0049 rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0050
0051
0052 %_Dict_rdict.pcm: %_Dict.cc ;
0053
0054
0055
0056
0057 noinst_PROGRAMS = \
0058 testexternals \
0059 testexternals_io
0060
0061 BUILT_SOURCES = \
0062 testexternals.cc
0063
0064 testexternals_SOURCES = \
0065 testexternals.cc
0066
0067 testexternals_LDADD = \
0068 libtpcdaq.la
0069
0070 testexternals_io_SOURCES = \
0071 testexternals.cc
0072
0073 testexternals_io_LDADD = \
0074 libtpcdaq_io.la
0075
0076 testexternals.cc:
0077 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0078 echo "int main()" >> $@
0079 echo "{" >> $@
0080 echo " return 0;" >> $@
0081 echo "}" >> $@
0082
0083 clean-local:
0084 rm -f *Dict* $(BUILT_SOURCES) *.pcm