Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:14:55

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -I$(OFFLINE_MAIN)/include \
0006   -I$(ROOTSYS)/include
0007 
0008 AM_LDFLAGS = \
0009   -L$(libdir) \
0010   -L$(OFFLINE_MAIN)/lib \
0011   -L$(OFFLINE_MAIN)/lib64 \
0012   -lHepMC \
0013   -lCLHEP \
0014   -lg4vertex_io \
0015   -lcalo_io \
0016   -lg4dst \
0017   -lg4eval \
0018   -lg4jets_io \
0019   -lg4jets
0020 
0021 pkginclude_HEADERS = \
0022   quickHIJING.h
0023 
0024 lib_LTLIBRARIES = \
0025   libquickHIJING.la
0026 
0027 libquickHIJING_la_SOURCES = \
0028   quickHIJING.cc
0029 
0030 libquickHIJING_la_LIBADD = \
0031   -lphool \
0032   -lSubsysReco
0033 
0034 BUILT_SOURCES = testexternals.cc
0035 
0036 noinst_PROGRAMS = \
0037   testexternals
0038 
0039 testexternals_SOURCES = testexternals.cc
0040 testexternals_LDADD   = libquickHIJING.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)