diff options
author | Per Bothner <per@bothner.com> | 1993-06-07 19:57:26 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1993-06-07 19:57:26 +0000 |
commit | 7f2649bb061f8e22a046845224262cbd768a850d (patch) | |
tree | 8cd95aeb0261346845fdc75c4561c5907de631f3 /gprof | |
parent | 0019b190541828aeb3a4939aa7adc8ede6002f4e (diff) | |
download | gdb-7f2649bb061f8e22a046845224262cbd768a850d.zip gdb-7f2649bb061f8e22a046845224262cbd768a850d.tar.gz gdb-7f2649bb061f8e22a046845224262cbd768a850d.tar.bz2 |
* Makefile.in (INCLUDES): Add -I../bfd for sysdep.h and bfd.h.
* configure.in: No longer need to configure to get sysdep.h.
Diffstat (limited to 'gprof')
-rw-r--r-- | gprof/ChangeLog | 5 | ||||
-rw-r--r-- | gprof/Makefile.in | 2 | ||||
-rw-r--r-- | gprof/configure.in | 6 |
3 files changed, 6 insertions, 7 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog index 6acd4b9..038b318 100644 --- a/gprof/ChangeLog +++ b/gprof/ChangeLog @@ -1,3 +1,8 @@ +Mon Jun 7 12:56:17 1993 Per Bothner (bothner@rtl.cygnus.com) + + * Makefile.in (INCLUDES): Add -I../bfd for sysdep.h and bfd.h. + * configure.in: No longer need to configure to get sysdep.h. + Tue May 18 21:44:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) * Makefile.in (install): should not depend on install-info diff --git a/gprof/Makefile.in b/gprof/Makefile.in index c1a8f74..3c5dcd8 100644 --- a/gprof/Makefile.in +++ b/gprof/Makefile.in @@ -43,7 +43,7 @@ DISTSTUFF = flat_bl.c bsd_callg_bl.c fsf_callg_bl.c CFLAGS=-g LDFLAGS= .c.o: - $(CC) -c $(CFLAGS) -I. -I$(srcdir) -I$(srcdir)/../include -I$(srcdir)/../bfd -DMACHINE_H=\"$(MACHINE).h\" $(TCFLAGS) $(HCFLAGS) $< + $(CC) -c $(CFLAGS) -I. -I$(srcdir) -I../bfd -I$(srcdir)/../include -I$(srcdir)/../bfd -DMACHINE_H=\"$(MACHINE).h\" $(TCFLAGS) $(HCFLAGS) $< all: diststuff $(PROG) diff --git a/gprof/configure.in b/gprof/configure.in index fbec798..a4de83d 100644 --- a/gprof/configure.in +++ b/gprof/configure.in @@ -8,12 +8,6 @@ srcname="gprof" # per-host: -. ${srcdir}/../bfd/configure.host - -# Set up to make a link between the host's include file and "sysdep.h". -files="../bfd/hosts/${my_host}.h" -links="sysdep.h" - # per-target: case "${target}" in i386-*-*) my_target=i386 ;; |