Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2026-04-07 08:08:32

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 lib_LTLIBRARIES = \
0004     libanneutral.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   -isystem$(OPT_SPHENIX)/include
0016 
0017 pkginclude_HEADERS = \
0018   AnNeutralMeson.h \
0019   AnNeutralMeson_micro_dst.h \
0020   AnNeutralMeson_nano.h \
0021   ClusterSmallInfo.h \
0022   ClusterSmallInfoContainer.h
0023 
0024 ROOTDICTS = \
0025   ClusterSmallInfo_Dict.cc \
0026   ClusterSmallInfoContainer_Dict.cc
0027 
0028 pcmdir = $(libdir)
0029 nobase_dist_pcm_DATA = \
0030   ClusterSmallInfo_Dict_rdict.pcm \
0031   ClusterSmallInfoContainer_Dict_rdict.pcm
0032 
0033 libanneutral_la_SOURCES = \
0034   $(ROOTDICTS) \
0035   AnNeutralMeson.cc \
0036   AnNeutralMeson_micro_dst.cc \
0037   AnNeutralMeson_nano.cc \
0038   ClusterSmallInfo.cc \
0039   ClusterSmallInfoContainer.cc
0040 
0041 libanneutral_la_LIBADD = \
0042   -lphool \
0043   -lmbd_io \
0044   -lSubsysReco \
0045   -lfun4all \
0046   -lg4dst \
0047   -ltriggeremulator \
0048   -luspin
0049 
0050 # Rule for generating table CINT dictionaries.
0051 %_Dict.cc: %.h %LinkDef.h
0052         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0053 
0054 #just to get the dependency
0055 %_Dict_rdict.pcm: %_Dict.cc ;
0056 
0057 ################################################
0058 # linking tests
0059 
0060 noinst_PROGRAMS = \
0061   testexternals
0062 
0063 testexternals_SOURCES = testexternals.C
0064 testexternals_LDADD = libanneutral.la
0065 
0066 testexternals.C:
0067         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0068         echo "int main()" >> $@
0069         echo "{" >> $@
0070         echo "  return 0;" >> $@
0071         echo "}" >> $@
0072 
0073 # Rule for generating table CINT dictionaries.
0074 %_Dict.cc: %.h %LinkDef.h
0075         rootcint -f $@ @CINTDEFS@ -c $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0076 
0077 clean-local:
0078         rm -f $(BUILT_SOURCES)