Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:12:41

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -isystem$(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   -lg4dst \
0015   -lg4eval
0016 
0017 pkginclude_HEADERS = \
0018   AnaUPC.h \
0019   UPCTrigStudy.h
0020 
0021 lib_LTLIBRARIES = \
0022   libhbcup.la
0023 
0024 libhbcup_la_SOURCES = \
0025   AnaUPC.cc \
0026   UPCTrigStudy.cc
0027 
0028 libhbcup_la_LIBADD = \
0029   -L$(libdir) \
0030   -L$(OFFLINE_MAIN)/lib \
0031   -lphool \
0032   -lfun4all \
0033   -lg4detectors_io \
0034   -lg4dst \
0035   -lSubsysReco
0036 
0037 BUILT_SOURCES = testexternals.cc
0038 
0039 noinst_PROGRAMS = \
0040   testexternals
0041 
0042 testexternals_SOURCES = testexternals.cc
0043 testexternals_LDADD   = libhbcup.la
0044 
0045 testexternals.cc:
0046         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0047         echo "int main()" >> $@
0048         echo "{" >> $@
0049         echo "  return 0;" >> $@
0050         echo "}" >> $@
0051 
0052 clean-local:
0053         rm -f $(BUILT_SOURCES)