Back to home page

sPhenix code displayed by LXR

 
 

    


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

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   SingleGl1PoolInputv2.h \
0015   SingleStreamingInputv2.h \
0016   Fun4AllStreamingLumiCountingInputManager.h
0017 
0018 lib_LTLIBRARIES = \
0019   librawbcolumi.la
0020 
0021 # source for mvtx decoder library
0022 librawbcolumi_la_SOURCES = \
0023   SingleGl1PoolInputv2.cc \
0024   SingleStreamingInputv2.cc \
0025   Fun4AllStreamingLumiCountingInputManager.cc
0026 
0027 librawbcolumi_la_LIBADD = \
0028   -lffarawobjects \
0029   -lfun4all \
0030   -lEvent \
0031   -lphoolraw \
0032   -lqautils
0033 
0034 BUILT_SOURCES = testexternals.cc
0035 
0036 noinst_PROGRAMS = \
0037   testexternals
0038 
0039 testexternals_SOURCES = testexternals.cc
0040 testexternals_LDADD   = librawbcolumi.la
0041 
0042 testexternals.cc:
0043         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0044         echo "int main()" >> $@
0045         echo "{" >> $@
0046         echo "  return 0;" >> $@
0047         echo "}" >> $@
0048 
0049 clean-local:
0050         rm -f $(BUILT_SOURCES)