Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-02 08:15:21

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -I$(OFFLINE_MAIN)/include \
0006   -I$(ROOTSYS)/include
0007 
0008 AM_LDFLAGS = \
0009   -L$(libdir) \
0010   -L$(OFFLINE_MAIN)/lib \
0011   -L$(OFFLINE_MAIN)/lib64
0012 
0013 pkginclude_HEADERS = \
0014   FullJetFinder.h
0015 
0016 lib_LTLIBRARIES = \
0017   libFullJetFinder.la
0018 
0019 pcmdir = $(libdir)
0020 nobase_dist_pcm_DATA = \
0021   FullJetFinder_Dict_rdict.pcm
0022 
0023 libFullJetFinder_la_SOURCES = \
0024   FullJetFinder.cc \
0025   FullJetFinder_Dict.cc
0026 
0027 libFullJetFinder_la_LIBADD = \
0028   -lphool \
0029   -lSubsysReco \
0030   -lfun4all \
0031   -lg4dst \
0032   -lg4eval \
0033   -ljetbase
0034 
0035 %_Dict.cc: %.h %LinkDef.h
0036         rootcint -f $@ @CINTDEFS@  $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0037 
0038 %_Dict_rdict.pcm: %_Dict.cc ;
0039 
0040 BUILT_SOURCES = testexternals.cc
0041 
0042 noinst_PROGRAMS = \
0043   testexternals
0044 
0045 testexternals_SOURCES = testexternals.cc
0046 testexternals_LDADD   = libFullJetFinder.la
0047 
0048 testexternals.cc:
0049         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0050         echo "int main()" >> $@
0051         echo "{" >> $@
0052         echo "  return 0;" >> $@
0053         echo "}" >> $@
0054 
0055 clean-local:
0056         rm -f $(BUILT_SOURCES)