diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-04-15 18:35:39 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-04-15 18:35:39 +0000 |
commit | 2f1fec47aef888ca5cb8072aaf082479b95f8ee0 (patch) | |
tree | c695fc1007a01d61a89d4614bb88a2ea75263a8f /gprof/Makefile.am | |
parent | 4066f85fd5d384f508eb4ce5fed1fbedcdcdf3b6 (diff) | |
download | gdb-2f1fec47aef888ca5cb8072aaf082479b95f8ee0.zip gdb-2f1fec47aef888ca5cb8072aaf082479b95f8ee0.tar.gz gdb-2f1fec47aef888ca5cb8072aaf082479b95f8ee0.tar.bz2 |
Change to use automake:
* Makefile.am: New file.
* configure.in: Run AM_INIT_AUTOMAKE, AM_MAINTAINER_MODE, and
AM_CYGWIN32.
* aclocal.m4: New file, created by aclocal.
* Makefile.in: Replace with file created by automake --cygnus.
* configure: Rebuild.
Diffstat (limited to 'gprof/Makefile.am')
-rw-r--r-- | gprof/Makefile.am | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/gprof/Makefile.am b/gprof/Makefile.am new file mode 100644 index 0000000..c4d8e7e --- /dev/null +++ b/gprof/Makefile.am @@ -0,0 +1,68 @@ +## Process this file with automake to generate Makefile.in + +## We should have cygnus in AUTOMAKE_OPTIONS, but it doesn't work yet. +AUTOMAKE_OPTIONS = foreign + +SUFFIXES = .m + +INCLUDES = -D_GNU_SOURCE -DTARGET_$(MY_TARGET) -DMACHINE_H=\"$(MY_TARGET).h\" -I../bfd -I$(srcdir)/../include -I$(srcdir)/../bfd + +LINK = $(HLDENV) $(CC) $(LDFLAGS) -o $@ + +MY_TARGET = @MY_TARGET@ + +bin_PROGRAMS = gprof + +gprof_SOURCES = basic_blocks.c call_graph.c cg_arcs.c cg_dfn.c \ + cg_print.c core.c gmon_io.c gprof.c hertz.c hist.c source.c \ + search_list.c symtab.c sym_ids.c utils.c \ + flat_bl.c bsd_callg_bl.c fsf_callg_bl.c +gprof_LDFLAGS = $(HLDFLAGS) +gprof_DEPENDENCIES = $(MY_TARGET).o ../bfd/libbfd.a ../libiberty/libiberty.a +gprof_LDADD = $(MY_TARGET).o @BFDLIB@ ../libiberty/libiberty.a + +noinst_HEADERS = \ + alpha.h i386.h ns532.h sparc.h tahoe.h vax.h dummy.h \ + basic_blocks.h call_graph.h cg_arcs.h cg_dfn.h cg_print.h \ + core.h gmon.h gmon_io.h gmon_out.h gprof.h hertz.h hist.h \ + search_list.h source.h sparc.h sym_ids.h symtab.h utils.h + +EXTRA_DIST = \ + alpha.c i386.c ns532.c sparc.c tahoe.c vax.c dummy.c \ + flat_bl.c bsd_callg_bl.c fsf_callg_bl.c \ + +BUILT_SOURCES = flat_bl.c bsd_callg_bl.c fsf_callg_bl.c + +.m.c: + awk -f $(srcdir)/gen-c-prog.awk > ./$*.c \ + FUNCTION=`(echo $*|sed -e 's,.*/,,g' -e 's/_bl//')`_blurb \ + FILE=$*.m $(srcdir)/$*.m + +info_TEXINFOS = gprof.texi +man_MANS = gprof.1 + +# Dependencies. +$(OBJECTS): ../bfd/bfd.h call_graph.h cg_arcs.h cg_print.h \ + core.h gmon_io.h gmon_out.h gprof.h hertz.h hist.h \ + search_list.h source.h sym_ids.h symtab.h utils.h \ + $(srcdir)/../include/libiberty.h $(srcdir)/../bfd/sysdep.h \ + $(MY_TARGET).h +$(MY_TARGET).o: $(MY_TARGET).c +basic_blocks.o: basic_blocks.c +bsd_call_bl.o: bsd_call_bl.c +call_graph.o: call_graph.c +cg_arcs.o: cg_arcs.c +cg_dfn.o: cg_dfn.c +cg_print.o: cg_print.c +core.o: core.c +flat_bl.o: flat_bl.c +fsf_callg_bl.o: fsf_callg_bl.c +gmon_io.o: gmon_io.c +gprof.o: gprof.c +hertz.o: hertz.c +hist.o: hist.c +search_list.o: search_list.c +source.o: source.c +symtab.o: symtab.c +sym_ids.o: sym_ids.c +utils.o: utils.c |