Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-12-17 09:20:04

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -isystem$(OFFLINE_MAIN)/include  \
0006   -isystem`root-config --incdir`
0007 
0008 lib_LTLIBRARIES = \
0009    libeventplaneinfo_io.la \
0010    libeventplaneinfo.la
0011 
0012 AM_LDFLAGS = \
0013   -L$(libdir) \
0014   -L$(OFFLINE_MAIN)/lib
0015 
0016 libeventplaneinfo_io_la_LIBADD = \
0017   -lphool \
0018   -lcentrality_io
0019 
0020 libeventplaneinfo_la_LIBADD = \
0021   libeventplaneinfo_io.la \
0022   -lepd_io \
0023   -lmbd_io \
0024   -lfun4all \
0025   -lffamodules \
0026   -lcalotrigger_io \
0027   -lffarawobjects \
0028   -lcdbobjects \
0029   -lglobalvertex_io
0030 
0031 pkginclude_HEADERS = \
0032   EventPlaneCalibration.h \
0033   Eventplaneinfo.h \
0034   Eventplaneinfov1.h \
0035   EventplaneinfoMap.h \
0036   EventplaneinfoMapv1.h \
0037   EventPlaneReco.h
0038 
0039 ROOTDICTS = \
0040   Eventplaneinfo_Dict.cc \
0041   Eventplaneinfov1_Dict.cc \
0042   EventplaneinfoMap_Dict.cc \
0043   EventplaneinfoMapv1_Dict.cc
0044 
0045 pcmdir = $(libdir)
0046 # more elegant way to create pcm files (without listing them)
0047 nobase_dist_pcm_DATA = $(ROOTDICTS:.cc=_rdict.pcm)
0048 
0049 libeventplaneinfo_io_la_SOURCES = \
0050   $(ROOTDICTS) \
0051   Eventplaneinfo.cc \
0052   Eventplaneinfov1.cc \
0053   EventplaneinfoMap.cc \
0054   EventplaneinfoMapv1.cc
0055 
0056 libeventplaneinfo_la_SOURCES = \
0057   EventPlaneCalibration.cc \
0058   EventPlaneReco.cc
0059 
0060 # Rule for generating table CINT dictionaries.
0061 %_Dict.cc: %.h %LinkDef.h
0062         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0063 
0064 #just to get the dependency
0065 %_Dict_rdict.pcm: %_Dict.cc ;
0066 
0067 ################################################
0068 # linking tests
0069 
0070 noinst_PROGRAMS = \
0071   testexternals_eventplaneinfo_io \
0072   testexternals_eventplaneinfo
0073 
0074 BUILT_SOURCES = \
0075   testexternals.cc
0076 
0077 testexternals_eventplaneinfo_io_SOURCES = testexternals.cc
0078 testexternals_eventplaneinfo_io_LDADD = libeventplaneinfo_io.la
0079 
0080 testexternals_eventplaneinfo_SOURCES = testexternals.cc
0081 testexternals_eventplaneinfo_LDADD = libeventplaneinfo.la
0082 
0083 testexternals.cc:
0084         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0085         echo "int main()" >> $@
0086         echo "{" >> $@
0087         echo "  return 0;" >> $@
0088         echo "}" >> $@
0089 
0090 clean-local:
0091         rm -f *Dict* $(BUILT_SOURCES) *.pcm