13d8817e4Smiod## Process this file with automake to generate Makefile.in
23d8817e4Smiod
33d8817e4SmiodAUTOMAKE_OPTIONS = cygnus
43d8817e4Smiod
53d8817e4SmiodSUFFIXES = .m
63d8817e4Smiod
73d8817e4SmiodSUBDIRS = po
83d8817e4Smiod
93d8817e4SmiodBASEDIR = $(srcdir)/..
103d8817e4SmiodBFDDIR = $(BASEDIR)/bfd
113d8817e4SmiodINCDIR	= $(BASEDIR)/include
123d8817e4Smiod
133d8817e4SmiodWARN_CFLAGS = @WARN_CFLAGS@
143d8817e4SmiodNO_WERROR = @NO_WERROR@
153d8817e4SmiodAM_CFLAGS = $(WARN_CFLAGS)
163d8817e4Smiod
173d8817e4SmiodMKDEP = gcc -MM
183d8817e4Smiod
193d8817e4SmiodINCLUDES = -D_GNU_SOURCE -DDEBUG -I../bfd -I$(srcdir)/../include -I$(srcdir)/../bfd -I$(srcdir)/../intl -I../intl -I. -DLOCALEDIR="\"$(datadir)/locale\""
203d8817e4Smiod
213d8817e4Smiodbin_PROGRAMS = gprof
223d8817e4Smiod
233d8817e4Smiod## Convenience var listing pure sources.
243d8817e4Smiodsources = basic_blocks.c call_graph.c cg_arcs.c cg_dfn.c \
253d8817e4Smiod	cg_print.c corefile.c gmon_io.c gprof.c hertz.c hist.c source.c \
263d8817e4Smiod	search_list.c symtab.c sym_ids.c utils.c \
273d8817e4Smiod	i386.c alpha.c vax.c tahoe.c sparc.c mips.c
283d8817e4Smiodgprof_SOURCES = $(sources) flat_bl.c bsd_callg_bl.c fsf_callg_bl.c
29*d2386abeSmiodgprof_DEPENDENCIES = ../bfd/libbfd.la $(INTLDEPS)
30*d2386abeSmiodgprof_LDADD = ../bfd/libbfd.la -liberty $(INTLLIBS)
313d8817e4Smiod
323d8817e4Smiodnoinst_HEADERS = \
333d8817e4Smiod	basic_blocks.h call_graph.h cg_arcs.h cg_dfn.h cg_print.h \
343d8817e4Smiod	corefile.h gmon.h gmon_io.h gmon_out.h gprof.h hertz.h hist.h \
353d8817e4Smiod	search_list.h source.h sym_ids.h symtab.h utils.h
363d8817e4Smiod
373d8817e4SmiodBUILT_SOURCES = flat_bl.c bsd_callg_bl.c fsf_callg_bl.c
383d8817e4SmiodEXTRA_DIST    = $(BUILT_SOURCES) bbconv.pl $(man_MANS)
393d8817e4Smiod
403d8817e4Smioddiststuff: $(BUILT_SOURCES) info $(man_MANS)
413d8817e4Smiod
423d8817e4Smiod.m.c:
433d8817e4Smiod	awk -f $(srcdir)/gen-c-prog.awk > ./$*.c \
443d8817e4Smiod	    FUNCTION=`(echo $*|sed -e 's,.*/,,g' -e 's/_bl//')`_blurb \
453d8817e4Smiod	    FILE=$*.m $(srcdir)/$*.m
463d8817e4Smiod
473d8817e4SmiodPOTFILES = $(sources) $(noinst_HEADERS)
483d8817e4Smiodpo/POTFILES.in: @MAINT@ Makefile
493d8817e4Smiod	for f in $(POTFILES); do echo $$f; done | LC_COLLATE= sort > tmp \
503d8817e4Smiod	  && mv tmp $(srcdir)/po/POTFILES.in
513d8817e4Smiod
523d8817e4SmiodMANCONF  = -Dman
533d8817e4Smiod
543d8817e4SmiodTEXI2POD = perl $(srcdir)/../etc/texi2pod.pl
553d8817e4Smiod
563d8817e4SmiodPOD2MAN = pod2man --center="GNU" --release="binutils-$(VERSION)" --section=1
573d8817e4Smiod
583d8817e4Smiodinfo_TEXINFOS = gprof.texi
593d8817e4Smiodman_MANS = gprof.1
603d8817e4Smiod
613d8817e4Smiod$(srcdir)/gprof.info: gprof.texi config.texi
623d8817e4Smiod
633d8817e4Smiodconfig.texi:
643d8817e4Smiod	echo "@set top_srcdir $(top_srcdir)" >> ./config.texi
653d8817e4Smiod
663d8817e4Smiod# Build the man page from the texinfo file
673d8817e4Smiod# The sed command removes the no-adjust Nroff command so that
683d8817e4Smiod# the man output looks standard.
693d8817e4Smiodgprof.1: $(srcdir)/gprof.texi config.texi
703d8817e4Smiod	touch $@
713d8817e4Smiod	-$(TEXI2POD) $(MANCONF) -Dgprof < $(srcdir)/gprof.texi > gprof.pod
723d8817e4Smiod	-($(POD2MAN) gprof.pod | \
733d8817e4Smiod	       sed -e '/^.if n .na/d' > $@.T$$$$ && \
743d8817e4Smiod	       mv -f $@.T$$$$ $@) || \
753d8817e4Smiod	       (rm -f $@.T$$$$ && exit 1)
763d8817e4Smiod	rm -f gprof.pod
773d8817e4Smiod
783d8817e4Smiod.PHONY: install-html install-html-am install-html-recursive
793d8817e4Smiod
803d8817e4Smiodhtml__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
813d8817e4Smiod
823d8817e4Smiodinstall-html: install-html-recursive  install-html-am
833d8817e4Smiod
843d8817e4Smiodinstall-html-am: $(HTMLS)
853d8817e4Smiod	@$(NORMAL_INSTALL)
863d8817e4Smiod	test -z "$(htmldir)" || $(mkdir_p) "$(DESTDIR)$(htmldir)"
873d8817e4Smiod	@list='$(HTMLS)'; for p in $$list; do \
883d8817e4Smiod	  if test -f "$$p" || test -d "$$p"; then d=""; else d="$(srcdir)/"; fi; \
893d8817e4Smiod	  f=$(html__strip_dir) \
903d8817e4Smiod	  if test -d "$$d$$p"; then \
913d8817e4Smiod	    echo " $(mkdir_p) '$(DESTDIR)$(htmldir)/$$f'"; \
923d8817e4Smiod	    $(mkdir_p) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
933d8817e4Smiod	    echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \
943d8817e4Smiod	    $(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \
953d8817e4Smiod	  else \
963d8817e4Smiod	    echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
973d8817e4Smiod	    $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
983d8817e4Smiod	  fi; \
993d8817e4Smiod	done
1003d8817e4Smiod
1013d8817e4Smiodinstall-html-recursive:
1023d8817e4Smiod	@failcom='exit 1'; \
1033d8817e4Smiod	for f in x $$MAKEFLAGS; do \
1043d8817e4Smiod	  case $$f in \
1053d8817e4Smiod	    *=* | --[!k]*);; \
1063d8817e4Smiod	    *k*) failcom='fail=yes';; \
1073d8817e4Smiod	  esac; \
1083d8817e4Smiod	done; \
1093d8817e4Smiod	dot_seen=no; \
1103d8817e4Smiod	target=`echo $@ | sed s/-recursive//`; \
1113d8817e4Smiod	list='$(SUBDIRS)'; for subdir in $$list; do \
1123d8817e4Smiod	  echo "Making $$target in $$subdir"; \
1133d8817e4Smiod	  if test "$$subdir" = "."; then \
1143d8817e4Smiod	    dot_seen=yes; \
1153d8817e4Smiod	    local_target="$$target-am"; \
1163d8817e4Smiod	  else \
1173d8817e4Smiod	    local_target="$$target"; \
1183d8817e4Smiod	  fi; \
1193d8817e4Smiod	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
1203d8817e4Smiod	  || eval $$failcom; \
1213d8817e4Smiod	done; \
1223d8817e4Smiod	if test "$$dot_seen" = "no"; then \
1233d8817e4Smiod	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
1243d8817e4Smiod	fi; test -z "$$fail"
1253d8817e4Smiod
1263d8817e4Smiod# We want install to imply install-info as per GNU standards, despite the
1273d8817e4Smiod# cygnus option.
1283d8817e4Smiodinstall-data-local: install-info
1293d8817e4Smiod
1303d8817e4Smiod# Targets to rebuild dependencies in this Makefile.
1313d8817e4Smiod# Have to get rid of DEP1 here so that "$?" later includes all sources.
1323d8817e4SmiodDEP: dep.sed $(gprof_SOURCES) $(noinst_HEADERS) gconfig.h
1333d8817e4Smiod	rm -f DEP1
1343d8817e4Smiod	$(MAKE) MKDEP="$(MKDEP)" DEP1
1353d8817e4Smiod	sed -f dep.sed < DEP1 > DEPA
1363d8817e4Smiod	echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA
1373d8817e4Smiod	if grep ' /' DEPA > /dev/null 2> /dev/null; then \
1383d8817e4Smiod	  echo 'make DEP failed!'; exit 1; \
1393d8817e4Smiod	else \
1403d8817e4Smiod	  mv -f DEPA $@; \
1413d8817e4Smiod	fi
1423d8817e4Smiod
1433d8817e4SmiodDEP1: $(gprof_SOURCES)
1443d8817e4Smiod	echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
1453d8817e4Smiod	echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
1463d8817e4Smiod	$(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2
1473d8817e4Smiod	mv -f DEP2 $@
1483d8817e4Smiod
1493d8817e4Smioddep.sed: dep-in.sed config.status
1503d8817e4Smiod	objdir=`pwd`; \
1513d8817e4Smiod	sed <$(srcdir)/dep-in.sed >dep.sed	\
1523d8817e4Smiod		-e 's!@INCDIR@!$(INCDIR)!'	\
1533d8817e4Smiod		-e 's!@BFDDIR@!$(BFDDIR)!'	\
1543d8817e4Smiod		-e 's!@SRCDIR@!$(srcdir)!'	\
1553d8817e4Smiod		-e "s!@OBJDIR@!$${objdir}!"	\
1563d8817e4Smiod		-e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/gprof$$,,`'!'
1573d8817e4Smiod
1583d8817e4Smioddep: DEP
1593d8817e4Smiod	sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
1603d8817e4Smiod	cat DEP >> tmp-Makefile
1613d8817e4Smiod	$(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
1623d8817e4Smiod
1633d8817e4Smioddep-in: DEP
1643d8817e4Smiod	sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
1653d8817e4Smiod	cat DEP >> tmp-Makefile.in
1663d8817e4Smiod	$(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
1673d8817e4Smiod
1683d8817e4Smioddep-am: DEP
1693d8817e4Smiod	sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
1703d8817e4Smiod	cat DEP >> tmp-Makefile.am
1713d8817e4Smiod	$(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
1723d8817e4Smiod
1733d8817e4Smiod.PHONY: dep dep-in dep-am
1743d8817e4Smiod
1753d8817e4SmiodCLEANFILES = dep.sed DEP DEPA DEP1 DEP2
1763d8817e4Smiod
1773d8817e4Smiod# DO NOT DELETE THIS LINE -- mkdep uses it.
1783d8817e4Smiod# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
1793d8817e4Smiodbasic_blocks.o: basic_blocks.c $(INCDIR)/libiberty.h \
1803d8817e4Smiod  $(INCDIR)/ansidecl.h gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h \
1813d8817e4Smiod  $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
1823d8817e4Smiod  $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h basic_blocks.h \
1833d8817e4Smiod  corefile.h gmon_io.h gmon_out.h search_list.h source.h \
1843d8817e4Smiod  symtab.h sym_ids.h
1853d8817e4Smiodcall_graph.o: call_graph.c gprof.h $(BFDDIR)/sysdep.h \
1863d8817e4Smiod  $(INCDIR)/ansidecl.h ../bfd/config.h $(INCDIR)/fopen-same.h \
1873d8817e4Smiod  $(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
1883d8817e4Smiod  gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
1893d8817e4Smiod  symtab.h cg_arcs.h call_graph.h corefile.h gmon_io.h \
1903d8817e4Smiod  gmon_out.h sym_ids.h
1913d8817e4Smiodcg_arcs.o: cg_arcs.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1923d8817e4Smiod  gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
1933d8817e4Smiod  $(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
1943d8817e4Smiod  gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
1953d8817e4Smiod  symtab.h call_graph.h cg_arcs.h cg_dfn.h cg_print.h \
1963d8817e4Smiod  utils.h sym_ids.h
1973d8817e4Smiodcg_dfn.o: cg_dfn.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1983d8817e4Smiod  gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
1993d8817e4Smiod  $(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
2003d8817e4Smiod  gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
2013d8817e4Smiod  symtab.h cg_arcs.h cg_dfn.h utils.h
2023d8817e4Smiodcg_print.o: cg_print.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
2033d8817e4Smiod  gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
2043d8817e4Smiod  $(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
2053d8817e4Smiod  gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
2063d8817e4Smiod  symtab.h cg_arcs.h cg_print.h hist.h utils.h corefile.h
2073d8817e4Smiodcorefile.o: corefile.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
2083d8817e4Smiod  gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
2093d8817e4Smiod  $(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
2103d8817e4Smiod  gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
2113d8817e4Smiod  symtab.h corefile.h
2123d8817e4Smiodgmon_io.o: gmon_io.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
2133d8817e4Smiod  ../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
2143d8817e4Smiod  ../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
2153d8817e4Smiod  search_list.h source.h symtab.h cg_arcs.h basic_blocks.h \
2163d8817e4Smiod  corefile.h call_graph.h gmon_io.h gmon_out.h gmon.h \
2173d8817e4Smiod  hertz.h hist.h $(INCDIR)/libiberty.h
2183d8817e4Smiodgprof.o: gprof.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
2193d8817e4Smiod  gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
2203d8817e4Smiod  $(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
2213d8817e4Smiod  gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
2223d8817e4Smiod  symtab.h basic_blocks.h call_graph.h cg_arcs.h cg_print.h \
2233d8817e4Smiod  corefile.h gmon_io.h hertz.h hist.h sym_ids.h $(INCDIR)/demangle.h
2243d8817e4Smiodhertz.o: hertz.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
2253d8817e4Smiod  ../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
2263d8817e4Smiod  ../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
2273d8817e4Smiod  hertz.h
2283d8817e4Smiodhist.o: hist.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
2293d8817e4Smiod  gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
2303d8817e4Smiod  $(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
2313d8817e4Smiod  gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
2323d8817e4Smiod  symtab.h corefile.h gmon_io.h gmon_out.h hist.h sym_ids.h \
2333d8817e4Smiod  utils.h
2343d8817e4Smiodsource.o: source.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
2353d8817e4Smiod  ../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
2363d8817e4Smiod  ../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
2373d8817e4Smiod  $(INCDIR)/libiberty.h search_list.h source.h
2383d8817e4Smiodsearch_list.o: search_list.c $(INCDIR)/libiberty.h \
2393d8817e4Smiod  $(INCDIR)/ansidecl.h gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h \
2403d8817e4Smiod  $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
2413d8817e4Smiod  $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h search_list.h
2423d8817e4Smiodsymtab.o: symtab.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
2433d8817e4Smiod  ../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
2443d8817e4Smiod  ../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
2453d8817e4Smiod  search_list.h source.h symtab.h cg_arcs.h corefile.h
2463d8817e4Smiodsym_ids.o: sym_ids.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
2473d8817e4Smiod  $(INCDIR)/safe-ctype.h gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h \
2483d8817e4Smiod  $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
2493d8817e4Smiod  $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h search_list.h \
2503d8817e4Smiod  source.h symtab.h cg_arcs.h sym_ids.h
2513d8817e4Smiodutils.o: utils.c $(INCDIR)/demangle.h $(INCDIR)/libiberty.h \
2523d8817e4Smiod  $(INCDIR)/ansidecl.h gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h \
2533d8817e4Smiod  $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
2543d8817e4Smiod  $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h search_list.h \
2553d8817e4Smiod  source.h symtab.h cg_arcs.h utils.h
2563d8817e4Smiodi386.o: i386.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
2573d8817e4Smiod  ../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
2583d8817e4Smiod  ../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
2593d8817e4Smiod  search_list.h source.h symtab.h cg_arcs.h corefile.h \
2603d8817e4Smiod  hist.h
2613d8817e4Smiodalpha.o: alpha.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
2623d8817e4Smiod  ../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
2633d8817e4Smiod  ../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
2643d8817e4Smiod  search_list.h source.h symtab.h cg_arcs.h corefile.h \
2653d8817e4Smiod  hist.h
2663d8817e4Smiodvax.o: vax.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
2673d8817e4Smiod  ../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
2683d8817e4Smiod  ../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
2693d8817e4Smiod  search_list.h source.h symtab.h cg_arcs.h corefile.h \
2703d8817e4Smiod  hist.h
2713d8817e4Smiodtahoe.o: tahoe.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
2723d8817e4Smiod  ../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
2733d8817e4Smiod  ../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
2743d8817e4Smiod  search_list.h source.h symtab.h cg_arcs.h corefile.h \
2753d8817e4Smiod  hist.h
2763d8817e4Smiodsparc.o: sparc.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
2773d8817e4Smiod  ../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
2783d8817e4Smiod  ../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
2793d8817e4Smiod  search_list.h source.h symtab.h cg_arcs.h corefile.h \
2803d8817e4Smiod  hist.h
2813d8817e4Smiodmips.o: mips.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
2823d8817e4Smiod  ../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
2833d8817e4Smiod  ../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
2843d8817e4Smiod  search_list.h source.h symtab.h cg_arcs.h corefile.h \
2853d8817e4Smiod  hist.h
2863d8817e4Smiodflat_bl.o: flat_bl.c $(INCDIR)/ansidecl.h
2873d8817e4Smiodbsd_callg_bl.o: bsd_callg_bl.c $(INCDIR)/ansidecl.h
2883d8817e4Smiodfsf_callg_bl.o: fsf_callg_bl.c $(INCDIR)/ansidecl.h
2893d8817e4Smiod# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
290