Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:14:20

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -I$(OFFLINE_MAIN)/include  \
0006   -I`root-config --incdir`
0007 
0008 lib_LTLIBRARIES = \
0009    librandomcones_io.la \
0010    librandomcones.la 
0011 
0012 AM_LDFLAGS = \
0013   -L$(libdir) \
0014   -L$(OFFLINE_MAIN)/lib
0015 
0016 librandomcones_io_la_LIBADD = \
0017   -lphool
0018 
0019 librandomcones_la_LDFLAGS = \
0020   -L$(libdir) \
0021   -L$(OFFLINE_MAIN)/lib \
0022   `fastjet-config --libs`
0023 
0024 librandomcones_la_LIBADD = \
0025   librandomcones_io.la \
0026   -ljetbase \
0027   -lfun4all \
0028   -lSubsysReco
0029 
0030 pkginclude_HEADERS = \
0031   RandomConeReco.h \
0032   RandomCone.h \
0033   RandomConev1.h 
0034 
0035 ROOTDICTS = \
0036   RandomCone_Dict.cc \
0037   RandomConev1_Dict.cc
0038 
0039 pcmdir = $(libdir)
0040 nobase_dist_pcm_DATA = \
0041   RandomCone_Dict_rdict.pcm \
0042   RandomConev1_Dict_rdict.pcm
0043 
0044 librandomcones_io_la_SOURCES = \
0045   $(ROOTDICTS) \
0046   RandomConev1.cc 
0047 
0048 librandomcones_la_SOURCES = \
0049   RandomConeReco.cc 
0050 
0051 # Rule for generating table CINT dictionaries.
0052 %_Dict.cc: %.h %LinkDef.h
0053         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0054 
0055 #just to get the dependency
0056 %_Dict_rdict.pcm: %_Dict.cc ;
0057 
0058 ################################################
0059 # linking tests
0060 BUILT_SOURCES = testexternals.cc
0061 
0062 noinst_PROGRAMS = \
0063   testexternals_randomcones_io \
0064   testexternals_randomcones
0065 
0066 
0067 testexternals_randomcones_io_SOURCES = testexternals.cc
0068 testexternals_randomcones_io_LDADD = librandomcones_io.la
0069 
0070 testexternals_randomcones_SOURCES = testexternals.cc
0071 testexternals_randomcones_LDADD = librandomcones.la
0072 
0073 testexternals.cc:
0074         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0075         echo "int main()" >> $@
0076         echo "{" >> $@
0077         echo "  return 0;" >> $@
0078         echo "}" >> $@
0079 
0080 clean-local:
0081         rm -f *Dict* $(BUILT_SOURCES) *.pcm
0082   
0083