Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -I$(OFFLINE_MAIN)/include/eigen3 \
0006   -I$(OFFLINE_MAIN)/include \
0007   -I$(OPT_SPHENIX)/include \
0008   -I$(OPT_SPHENIX)/hdf5/include \
0009   -I`root-config --incdir`
0010 
0011 lib_LTLIBRARIES = \
0012    libtpcmldatainterface.la
0013 
0014 AM_CXXFLAGS = -Werror
0015 
0016 libtpcmldatainterface_la_LDFLAGS = \
0017   -L$(libdir) \
0018   -L$(OFFLINE_MAIN)/lib \
0019   -L$(OPT_SPHENIX)/lib\
0020   -L$(OPT_SPHENIX)/hdf5/lib
0021 
0022 libtpcmldatainterface_la_LIBADD = \
0023   -lg4dst \
0024   -lfun4all \
0025   -lg4eval \
0026   -lhdf5_cpp 
0027 
0028 pkginclude_HEADERS = \
0029   TPCMLDataInterface.h
0030 
0031 if ! MAKEROOT6
0032   ROOT5DICTS = \
0033   TPCMLDataInterface_Dict.cc 
0034 endif
0035 
0036 libtpcmldatainterface_la_SOURCES = \
0037   $(ROOT5DICTS) \
0038   TPCMLDataInterface.cc
0039 
0040 # Rule for generating table CINT dictionaries.
0041 %_Dict.cc: %.h %LinkDef.h
0042         rootcint -f $@ @CINTDEFS@ -c $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0043 
0044 ################################################
0045 # linking tests
0046 
0047 noinst_PROGRAMS = testexternals
0048 
0049 BUILT_SOURCES = \
0050   testexternals.cc
0051 
0052 testexternals_SOURCES = \
0053   testexternals.cc
0054 
0055 testexternals_LDADD = \
0056   libtpcmldatainterface.la
0057 
0058 testexternals.cc:
0059         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0060         echo "int main()" >> $@
0061         echo "{" >> $@
0062         echo "  return 0;" >> $@
0063         echo "}" >> $@
0064 
0065 clean-local:
0066         rm -f *Dict* $(BUILT_SOURCES) *.pcm