diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-06-27 15:37:48 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-06-27 15:37:48 +0000 |
commit | e3c0e00bb155377b845c4b1470eba36a206fe908 (patch) | |
tree | e9cca164c0e263fc62eb9dcc9b56aaf647fc7f3c /gprof/Makefile.in | |
parent | 5304aea938084c9c4296b612257d3b8490857f7f (diff) | |
download | gdb-e3c0e00bb155377b845c4b1470eba36a206fe908.zip gdb-e3c0e00bb155377b845c4b1470eba36a206fe908.tar.gz gdb-e3c0e00bb155377b845c4b1470eba36a206fe908.tar.bz2 |
* configure.in: Call AC_ISC_POSIX.
* configure: Rebuild.
* Makefile.in (gprof): Pass $(CFLAGS) during link.
* hertz.c: Don't include <sys/time.h>; let sysdep.h handle that.
If HAVE_SETITIMER is not defined, try using sysconf.
Diffstat (limited to 'gprof/Makefile.in')
-rw-r--r-- | gprof/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gprof/Makefile.in b/gprof/Makefile.in index 1aa7eed..c4507a3 100644 --- a/gprof/Makefile.in +++ b/gprof/Makefile.in @@ -103,7 +103,7 @@ install: all $(INSTALL_XFORM1) $(srcdir)/gprof.1 $(man1dir)/gprof.1 gprof: $(OBJS) $(LIBDEPS) - $(CC) -o $(PROG) $(HLDFLAGS) $(LDFLAGS) $(OBJS) $(LIBS) + $(CC) -o $(PROG) $(CFLAGS) $(HLDFLAGS) $(LDFLAGS) $(OBJS) $(LIBS) mostlyclean: -rm -f *.o core gprof nohup.out \ |