File indexing completed on 2025-12-16 09:19:36
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 AM_CPPFLAGS = \
0004 -I$(includedir) \
0005 -isystem$(OFFLINE_MAIN)/include \
0006 -isystem$(ROOTSYS)/include \
0007 -isystem$(OPT_SPHENIX)/include
0008
0009 AM_LDFLAGS = \
0010 -L$(libdir) \
0011 -L$(OFFLINE_MAIN)/lib
0012
0013 pkginclude_HEADERS = \
0014 DBInterface.h \
0015 Fun4AllBase.h \
0016 Fun4AllDstInputManager.h \
0017 Fun4AllDstOutputManager.h \
0018 Fun4AllDummyInputManager.h \
0019 Fun4AllHistoBinDefs.h \
0020 Fun4AllHistoManager.h \
0021 Fun4AllInputManager.h \
0022 Fun4AllMemoryTracker.h \
0023 Fun4AllMonitoring.h \
0024 Fun4AllNoSyncDstInputManager.h \
0025 Fun4AllOutputManager.h \
0026 Fun4AllReturnCodes.h \
0027 Fun4AllRunNodeInputManager.h \
0028 Fun4AllServer.h \
0029 Fun4AllSyncManager.h \
0030 Fun4AllUtils.h \
0031 InputFileHandler.h \
0032 PHTFileServer.h \
0033 SubsysReco.h \
0034 TDirectoryHelper.h
0035
0036 lib_LTLIBRARIES = \
0037 libSubsysReco.la \
0038 libTDirectoryHelper.la \
0039 libfun4all.la
0040
0041 libTDirectoryHelper_la_SOURCES = \
0042 TDirectoryHelper.cc
0043
0044 libTDirectoryHelper_la_LDFLAGS = \
0045 `root-config --libs`
0046
0047 libfun4all_la_SOURCES = \
0048 DBInterface.cc \
0049 Fun4AllDstInputManager.cc \
0050 Fun4AllDstOutputManager.cc \
0051 Fun4AllDummyInputManager.cc \
0052 Fun4AllHistoManager.cc \
0053 Fun4AllInputManager.cc \
0054 Fun4AllMonitoring.cc \
0055 Fun4AllMemoryTracker.cc \
0056 Fun4AllNoSyncDstInputManager.cc \
0057 Fun4AllOutputManager.cc \
0058 Fun4AllRunNodeInputManager.cc \
0059 Fun4AllServer.cc \
0060 Fun4AllSyncManager.cc \
0061 Fun4AllUtils.cc \
0062 InputFileHandler.cc \
0063 PHTFileServer.cc
0064
0065 libfun4all_la_LIBADD = \
0066 libSubsysReco.la \
0067 libTDirectoryHelper.la \
0068 -lboost_filesystem \
0069 -lFROG \
0070 -lffaobjects \
0071 -lphool \
0072 -lsphenixodbc
0073
0074 libSubsysReco_la_SOURCES = \
0075 Fun4AllBase.cc
0076
0077 bin_SCRIPTS = \
0078 CreateSubsysRecoModule.pl
0079
0080 BUILT_SOURCES = testexternals.cc
0081
0082 noinst_PROGRAMS = \
0083 testexternals_fun4all \
0084 testexternals_subsysreco \
0085 testexternals_tdirectoryhelper
0086
0087 testexternals_fun4all_SOURCES = testexternals.cc
0088 testexternals_fun4all_LDADD = libfun4all.la
0089
0090 testexternals_subsysreco_SOURCES = testexternals.cc
0091 testexternals_subsysreco_LDADD = libSubsysReco.la
0092
0093 testexternals_tdirectoryhelper_SOURCES = testexternals.cc
0094 testexternals_tdirectoryhelper_LDADD = libTDirectoryHelper.la
0095
0096 testexternals.cc:
0097 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0098 echo "int main()" >> $@
0099 echo "{" >> $@
0100 echo " return 0;" >> $@
0101 echo "}" >> $@
0102
0103 clean-local:
0104 rm -f $(BUILT_SOURCES)