Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -I$(OFFLINE_MAIN)/include \
0006   -isystem$(ROOTSYS)/include
0007 
0008 lib_LTLIBRARIES = \
0009    libphgeom_io.la \
0010    libphgeom.la
0011 
0012 pkginclude_HEADERS = \
0013   PHGeomFileImport.h \
0014   PHGeomIOTGeo.h \
0015   PHGeomTGeo.h \
0016   PHGeomUtility.h
0017 
0018 ROOTDICTS = \
0019   PHGeomIOTGeo_Dict.cc
0020 
0021 pcmdir = $(libdir)
0022 nobase_dist_pcm_DATA = \
0023     PHGeomIOTGeo_Dict_rdict.pcm
0024 
0025 libphgeom_la_SOURCES = \
0026   PHGeomTGeo.cc \
0027   PHGeomFileImport.cc \
0028   PHGeomUtility.cc
0029 
0030 libphgeom_io_la_SOURCES = \
0031   $(ROOTDICTS) \
0032   PHGeomIOTGeo.cc
0033 
0034 AM_LDFLAGS = \
0035   -L$(libdir) \
0036   -L$(OFFLINE_MAIN)/lib \
0037   -L$(ROOTSYS)/lib
0038 
0039 libphgeom_la_LIBADD = \
0040   libphgeom_io.la \
0041   -lSubsysReco \
0042   -luuid
0043 
0044 libphgeom_io_la_LIBADD = \
0045   -lphool \
0046   -lGeom
0047 
0048 BUILT_SOURCES = \
0049   testexternals.cc
0050 
0051 noinst_PROGRAMS = \
0052   testexternals_libphgeom \
0053   testexternals_libphgeom_io
0054 
0055 testexternals_libphgeom_SOURCES = testexternals.cc
0056 testexternals_libphgeom_LDADD   = libphgeom.la
0057 
0058 testexternals_libphgeom_io_SOURCES = testexternals.cc
0059 testexternals_libphgeom_io_LDADD   = libphgeom_io.la
0060 
0061 testexternals.cc:
0062         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0063         echo "int main()" >> $@
0064         echo "{" >> $@
0065         echo "  return 0;" >> $@
0066         echo "}" >> $@
0067 
0068 
0069 # Rule for generating table CINT dictionaries.
0070 %_Dict.cc: %.h %LinkDef.h
0071         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0072 
0073 #just to get the dependency
0074 %_Dict_rdict.pcm: %_Dict.cc ;
0075 
0076 clean-local:
0077         rm -f *Dict* $(BUILT_SOURCES) *.pcm