Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2026-04-06 08:12:10

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -isystem$(OFFLINE_MAIN)/include \
0006   -isystem$(ROOTSYS)/include
0007 
0008 AM_LDFLAGS = \
0009   -L$(libdir) \
0010   -L$(OFFLINE_MAIN)/lib \
0011   -L$(OFFLINE_MAIN)/lib64 \
0012    `root-config --libs`
0013 
0014 pkginclude_HEADERS = \
0015   sEPD_TreeGen.h \
0016   QVecCalib.h \
0017   QVecDefs.h
0018 
0019 lib_LTLIBRARIES = \
0020   libsepd_eventplanecalib.la
0021 
0022 ROOTDICTS = \
0023   EventPlaneData_Dict.cc
0024 
0025 pcmdir = $(libdir)
0026 # more elegant way to create pcm files (without listing them)
0027 nobase_dist_pcm_DATA = $(ROOTDICTS:.cc=_rdict.pcm)
0028 
0029 # EventPlaneData is a locally used root i/o object - no need to create an io library
0030 libsepd_eventplanecalib_la_SOURCES = \
0031   $(ROOTDICTS) \
0032   EventPlaneData.cc \
0033   sEPD_TreeGen.cc \
0034   QVecCalib.cc
0035 
0036 libsepd_eventplanecalib_la_LIBADD = \
0037   -lphool \
0038   -lSubsysReco \
0039   -lcentrality_io \
0040   -lfun4all \
0041   -lffamodules \
0042   -lglobalvertex_io \
0043   -lcalotrigger_io \
0044   -lcalotrigger \
0045   -lcdbobjects \
0046   -lepd_io
0047 
0048 # Rule for generating table CINT dictionaries.
0049 %_Dict.cc: %.h %LinkDef.h
0050         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0051 
0052 #just to get the dependency
0053 %_Dict_rdict.pcm: %_Dict.cc ;
0054 
0055 BUILT_SOURCES = testexternals.cc
0056 
0057 noinst_PROGRAMS = \
0058   testexternals
0059 
0060 testexternals_SOURCES = testexternals.cc
0061 testexternals_LDADD   = libsepd_eventplanecalib.la
0062 
0063 testexternals.cc:
0064         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0065         echo "int main()" >> $@
0066         echo "{" >> $@
0067         echo "  return 0;" >> $@
0068         echo "}" >> $@
0069 
0070 clean-local:
0071         rm -f $(BUILT_SOURCES)