Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:15:49

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 lib_LTLIBRARIES = \
0004     libtpcgaindebug.la
0005 
0006 AM_LDFLAGS = \
0007   -L$(libdir) \
0008   -L$(OFFLINE_MAIN)/lib \
0009   -L$(OFFLINE_MAIN)/lib64
0010 
0011 AM_CPPFLAGS = \
0012   -I$(includedir) \
0013   -I$(OFFLINE_MAIN)/include \
0014   -isystem$(ROOTSYS)/include
0015 
0016 pkginclude_HEADERS = \
0017   TPCGainDebug.h
0018 
0019 libtpcgaindebug_la_SOURCES = \
0020   TPCGainDebug.cc 
0021 
0022 libtpcgaindebug_la_LIBADD = \
0023   -lcalo_io \
0024   -lphool \
0025   -lmbd_io \
0026   -lSubsysReco \
0027   -lcentrality_io \
0028   -lfun4all \
0029   -lg4dst \
0030   -lg4detectors_io \
0031   -lphg4hit
0032 
0033 
0034 ################################################
0035 # linking tests
0036 
0037 noinst_PROGRAMS = \
0038   testexternals
0039 
0040 testexternals_SOURCES = testexternals.C
0041 testexternals_LDADD = libtpcgaindebug.la
0042 
0043 testexternals.C:
0044         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0045         echo "int main()" >> $@
0046         echo "{" >> $@
0047         echo "  return 0;" >> $@
0048         echo "}" >> $@
0049 
0050 # Rule for generating table CINT dictionaries.
0051 %_Dict.cc: %.h %LinkDef.h
0052         rootcint -f $@ @CINTDEFS@ -c $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0053 
0054 clean-local:
0055         rm -f $(BUILT_SOURCES)