diff options
author | J.T. Conklin <jtc@acorntoolworks.com> | 1995-04-19 18:27:35 +0000 |
---|---|---|
committer | J.T. Conklin <jtc@acorntoolworks.com> | 1995-04-19 18:27:35 +0000 |
commit | 7858d8dc8a313727713c7af06ae8e3482c71e4ca (patch) | |
tree | dd24115dc2493b0366780e95ac2fe065d322f754 /gprof/Makefile.in | |
parent | 4121273fa7e408035fbe7d61de8f8b83d784fe5b (diff) | |
download | gdb-7858d8dc8a313727713c7af06ae8e3482c71e4ca.zip gdb-7858d8dc8a313727713c7af06ae8e3482c71e4ca.tar.gz gdb-7858d8dc8a313727713c7af06ae8e3482c71e4ca.tar.bz2 |
* gen-c-prog.awk: Changed reference to "make-c-prog.awk" in
comment emitted by this script to gen-c-prog.awk.
* Makefile.in, configure.in: Converted to use autoconf.
* configure: New file, generated with autoconf 2.3.
* config/{mt-alpha, mt-dummy, mt-i386, mt-ns532, mt-sparc,
mt-tahoe, mt-vax}: Removed.
Diffstat (limited to 'gprof/Makefile.in')
-rw-r--r-- | gprof/Makefile.in | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/gprof/Makefile.in b/gprof/Makefile.in index f310d25..7fd198c 100644 --- a/gprof/Makefile.in +++ b/gprof/Makefile.in @@ -1,14 +1,14 @@ # @(#)Makefile 5.17 (Berkeley) 5/11/90 -srcdir = . - -prefix = /usr/local - .SUFFIXES : .m -program_prefix = +VPATH = @srcdir@ +srcdir = @srcdir@ +prefix = @prefix@ + exec_prefix = $(prefix) -program_transform_name = +program_transform_name = @program_transform_name@ + bindir = $(exec_prefix)/bin libdir = $(exec_prefix)/lib tooldir = $(libdir) @@ -30,8 +30,7 @@ TEXINDEX = texindex # this is the directory we look in to find Texinfo texidir = $(srcdir)/../texinfo -#### host and target dependent Makefile fragments come in here. -### +MY_MACHINE= @MY_MACHINE@ PROG= gprof SRCS= $(MY_MACHINE).c basic_blocks.c call_graph.c \ |