Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:17:38

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -I$(OFFLINE_MAIN)/include  \
0006   -isystem`root-config --incdir`
0007 
0008 lib_LTLIBRARIES = \
0009    libg4mbd_io.la \
0010    libg4mbd.la
0011 
0012 AM_LDFLAGS = \
0013   -L$(libdir) \
0014   -L$(OFFLINE_MAIN)/lib
0015 
0016 libg4mbd_io_la_LIBADD = \
0017   -lphool
0018 
0019 libg4mbd_la_LIBADD = \
0020   libg4mbd_io.la \
0021   -lmbd_io \
0022   -lg4detectors \
0023   -lSubsysReco \
0024   -lglobalvertex_io
0025 
0026 pkginclude_HEADERS = \
0027   MbdDigitization.h \
0028   MbdVertexFastSimReco.h
0029 
0030 
0031 libg4mbd_io_la_SOURCES = \
0032   $(ROOTDICTS)
0033 
0034 libg4mbd_la_SOURCES = \
0035   MbdDigitization.cc \
0036   MbdVertexFastSimReco.cc
0037 
0038 # Rule for generating table CINT dictionaries.
0039 %_Dict.cc: %.h %LinkDef.h
0040         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0041 
0042 #just to get the dependency
0043 %_Dict_rdict.pcm: %_Dict.cc ;
0044 
0045 ################################################
0046 # linking tests
0047 
0048 noinst_PROGRAMS = \
0049   testexternalsg4mbd_io \
0050   testexternalsg4mbd
0051 
0052 BUILT_SOURCES = testexternals.cc
0053 
0054 testexternalsg4mbd_io_SOURCES = testexternals.cc
0055 testexternalsg4mbd_io_LDADD = libg4mbd_io.la
0056 
0057 testexternalsg4mbd_SOURCES = testexternals.cc
0058 testexternalsg4mbd_LDADD = libg4mbd_io.la
0059 
0060 testexternals.cc:
0061         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0062         echo "int main()" >> $@
0063         echo "{" >> $@
0064         echo "  return 0;" >> $@
0065         echo "}" >> $@
0066 
0067 clean-local:
0068         rm -f *Dict* $(BUILT_SOURCES) *.pcm