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 lib_LTLIBRARIES = \
0004   libphoolraw.la
0005 
0006 
0007 AM_CPPFLAGS = \
0008   -I$(includedir) \
0009   -isystem$(OFFLINE_MAIN)/include \
0010   -isystem`root-config --incdir`
0011 
0012 AM_LDFLAGS = \
0013   -L$(libdir) \
0014   -L$(OFFLINE_MAIN)/lib
0015 
0016 libphoolraw_la_LDFLAGS = \
0017   -L$(libdir) \
0018   -L$(OFFLINE_MAIN)/lib \
0019   `root-config --libs`
0020 
0021 libphoolraw_la_LIBADD = \
0022   -lphool \
0023   -lEvent
0024 
0025 libphoolraw_la_SOURCES = \
0026   PHRawDataNode.cc \
0027   PHRawOManager.cc
0028 
0029 pkginclude_HEADERS =  \
0030   PHRawOManager.h
0031 
0032 BUILT_SOURCES = \
0033   testexternals.cc
0034 
0035 noinst_PROGRAMS = \
0036   testexternals
0037 
0038 
0039 testexternals_SOURCES = testexternals.cc
0040 testexternals_LDADD = \
0041   libphoolraw.la
0042 
0043 testexternals.cc:
0044         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0045         echo "int main()" >> $@
0046         echo "{" >> $@
0047         echo "  return 0;" >> $@
0048         echo "}" >> $@
0049 
0050 clean-local:
0051         rm -f $(BUILT_SOURCES)