File indexing completed on 2025-08-03 08:15:38
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 INCLUDES = \
0004 -I$(includedir) \
0005 -I$(OFFLINE_MAIN)/include \
0006 -I`root-config --incdir`
0007
0008 libRecoInfoExport_la_LDFLAGS = \
0009 -nodefaultlibs \
0010 -L$(libdir) \
0011 -L$(OFFLINE_MAIN)/lib \
0012 `root-config --libs`
0013
0014 lib_LTLIBRARIES = \
0015 libRecoInfoExport.la
0016
0017 include_HEADERS = \
0018 RecoInfoExport.h \
0019 RecoInfoExportLinkDef.h
0020
0021 libRecoInfoExport_la_SOURCES = \
0022 RecoInfoExport.C \
0023 RecoInfoExport_Dict.C
0024
0025 libRecoInfoExport_la_LIBADD = \
0026 -lg4dst \
0027 -lg4eval \
0028 -lphool
0029
0030 BUILT_SOURCES = \
0031 testexternals.C
0032
0033 noinst_PROGRAMS = \
0034 testexternals
0035
0036 testexternals_LDADD = \
0037 libRecoInfoExport.la
0038
0039 testexternals.C:
0040 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0041 echo "int main()" >> $@
0042 echo "{" >> $@
0043 echo " return 0;" >> $@
0044 echo "}" >> $@
0045
0046
0047
0048
0049 %_Dict.C: %.h %LinkDef.h
0050 rootcint -f $@ -c $(CINTFLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $^
0051
0052 clean-local:
0053 rm -f *Dict* testexternals.C
0054
0055 testexternals_SOURCES = testexternals.C