Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-12-17 09:19:41

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -isystem$(OFFLINE_MAIN)/include \
0006   -isystem$(OPT_SPHENIX)/include \
0007   -isystem`root-config --incdir`
0008 
0009 lib_LTLIBRARIES = libFROG.la
0010 
0011 libFROG_la_LIBADD = \
0012   -L$(libdir) \
0013   -L$(OFFLINE_MAIN)/lib \
0014   -lsphenixodbc
0015 
0016 pkginclude_HEADERS = \
0017   FROG.h
0018 
0019 libFROG_la_SOURCES = \
0020   FROG.cc
0021 
0022 bin_SCRIPTS = \
0023   CreateDstList.pl \
0024   CreateFileList.pl
0025 
0026 noinst_PROGRAMS = testexternals
0027 
0028 BUILT_SOURCES = \
0029   testexternals.cc
0030 
0031 testexternals_SOURCES = testexternals.cc
0032 
0033 testexternals_LDADD = \
0034   libFROG.la
0035 
0036 testexternals.cc:
0037         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0038         echo "int main()" >> $@
0039         echo "{" >> $@
0040         echo "  return 0;" >> $@
0041         echo "}" >> $@
0042 
0043 clean-local:
0044         rm -f $(BUILT_SOURCES)