Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:17:37

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   Eventplaneinfo.h \
0033   Eventplaneinfov1.h \
0034   EventplaneinfoMap.h \
0035   EventplaneinfoMapv1.h \
0036   EventPlaneReco.h
0037 
0038 ROOTDICTS = \
0039   Eventplaneinfo_Dict.cc \
0040   Eventplaneinfov1_Dict.cc \
0041   EventplaneinfoMap_Dict.cc \
0042   EventplaneinfoMapv1_Dict.cc
0043 
0044 pcmdir = $(libdir)
0045 nobase_dist_pcm_DATA = \
0046   Eventplaneinfo_Dict_rdict.pcm \
0047   Eventplaneinfov1_Dict_rdict.pcm \
0048   EventplaneinfoMap_Dict_rdict.pcm \
0049   EventplaneinfoMapv1_Dict_rdict.pcm
0050 
0051 libeventplaneinfo_io_la_SOURCES = \
0052   $(ROOTDICTS) \
0053   Eventplaneinfo.cc \
0054   Eventplaneinfov1.cc \
0055   EventplaneinfoMap.cc \
0056   EventplaneinfoMapv1.cc
0057 
0058 libeventplaneinfo_la_SOURCES = \
0059   EventPlaneReco.cc
0060 
0061 # Rule for generating table CINT dictionaries.
0062 %_Dict.cc: %.h %LinkDef.h
0063         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0064 
0065 #just to get the dependency
0066 %_Dict_rdict.pcm: %_Dict.cc ;
0067 
0068 ################################################
0069 # linking tests
0070 
0071 noinst_PROGRAMS = \
0072   testexternals_eventplaneinfo_io \
0073   testexternals_eventplaneinfo
0074 
0075 BUILT_SOURCES = \
0076   testexternals.cc
0077 
0078 testexternals_eventplaneinfo_io_SOURCES = testexternals.cc
0079 testexternals_eventplaneinfo_io_LDADD = libeventplaneinfo_io.la
0080 
0081 testexternals_eventplaneinfo_SOURCES = testexternals.cc
0082 testexternals_eventplaneinfo_LDADD = libeventplaneinfo.la
0083 
0084 testexternals.cc:
0085         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0086         echo "int main()" >> $@
0087         echo "{" >> $@
0088         echo "  return 0;" >> $@
0089         echo "}" >> $@
0090 
0091 clean-local:
0092         rm -f *Dict* $(BUILT_SOURCES) *.pcm