Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:16:11

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