Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:13:28

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 
0012 lib_LTLIBRARIES = \
0013   libmixedjet.la
0014 
0015 pkginclude_HEADERS = \
0016   MixedJetAnalysis.h
0017 
0018 ROOTDICTS = 
0019 
0020 pcmdir = $(libdir)
0021 nobase_dist_pcm_DATA = 
0022 
0023 libmixedjet_la_SOURCES = \
0024   MixedJetAnalysis.cc
0025 
0026 libmixedjet_la_LIBADD = \
0027   -lcentrality_io \
0028   -leventplaneinfo_io \
0029   -lglobalvertex \
0030   -lmbd_io \
0031   -lcalotrigger_io \
0032   -lSubsysReco \
0033   -ljetbackground\
0034   -ljetbase \
0035   -lffamodules \
0036   -lffarawobjects
0037 
0038 %_Dict.cc: %.h %LinkDef.h
0039         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0040 
0041 #just to get the dependency
0042 %_Dict_rdict.pcm: %_Dict.cc ;
0043 
0044 BUILT_SOURCES = testexternals.cc
0045 
0046 noinst_PROGRAMS = \
0047   testexternals_mixedjet
0048 
0049 testexternals_mixedjet_SOURCES = testexternals.cc
0050 testexternals_mixedjet_LDADD   = libmixedjet.la
0051 
0052 testexternals.cc:
0053         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0054         echo "int main()" >> $@
0055         echo "{" >> $@
0056         echo "  return 0;" >> $@
0057         echo "}" >> $@
0058 
0059 clean-local:
0060         rm -f $(BUILT_SOURCES)