Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:15:34

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 INCLUDES = \
0004   -I$(includedir) \
0005   -I$(OFFLINE_MAIN)/include \
0006   -I`root-config --incdir`
0007 
0008 libSimpleTrackingAnalysis_la_LDFLAGS = \
0009   -nodefaultlibs \
0010   -L$(libdir) \
0011   -L$(OFFLINE_MAIN)/lib \
0012   `root-config --libs`
0013 
0014 lib_LTLIBRARIES = \
0015   libSimpleTrackingAnalysis.la
0016 
0017 include_HEADERS = \
0018   SimpleTrackingAnalysis.h \
0019   SimpleTrackingAnalysisLinkDef.h \
0020   STACalorimeterCharacterization.h \
0021   STACalorimeterCharacterizationLinkDef.h
0022 
0023 libSimpleTrackingAnalysis_la_SOURCES = \
0024   SimpleTrackingAnalysis.C \
0025   SimpleTrackingAnalysis_Dict.C \
0026   STACalorimeterCharacterization.C \
0027   STACalorimeterCharacterization_Dict.C
0028 
0029 libSimpleTrackingAnalysis_la_LIBADD = \
0030   -lg4dst \
0031   -lg4eval \
0032   -lcalo_util \
0033   -lphool
0034 
0035 BUILT_SOURCES = \
0036   testexternals.C
0037 
0038 noinst_PROGRAMS = \
0039   testexternals
0040 
0041 testexternals_LDADD = \
0042   libSimpleTrackingAnalysis.la
0043 
0044 testexternals.C:
0045         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0046         echo "int main()" >> $@
0047         echo "{" >> $@
0048         echo "  return 0;" >> $@
0049         echo "}" >> $@
0050 
0051 ##############################################
0052 # please add new classes in alphabetical order
0053 # Rule for generating CINT dictionaries from class headers.
0054 %_Dict.C: %.h %LinkDef.h
0055         rootcint -f $@ -c $(CINTFLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $^
0056 
0057 clean-local:
0058         rm -f *Dict* testexternals.C
0059 
0060 testexternals_SOURCES = testexternals.C