diff options
author | Per Bothner <per@bothner.com> | 1993-04-13 23:20:14 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1993-04-13 23:20:14 +0000 |
commit | 9d65137307d0efc6f2623614747ffc30b4ef26eb (patch) | |
tree | f6a37cc0b43e6ccec8a98060cfcd5eeb488daa68 /gprof/configure.in | |
parent | e2ff731bf7586317aea1dfbe588cc8d1ec182457 (diff) | |
download | gdb-9d65137307d0efc6f2623614747ffc30b4ef26eb.zip gdb-9d65137307d0efc6f2623614747ffc30b4ef26eb.tar.gz gdb-9d65137307d0efc6f2623614747ffc30b4ef26eb.tar.bz2 |
* M Makefile.in: Add -g to CFLAGS.
Ads LDFLAGS and use in place of CFLAGS where appropriate.
* configure.in: Make a sysdep.hlink in the same way other
bfd-based directories do.
* gprof.h (UNIT): Replace non-standard 'u_short' by 'unsigned
short'.
* gprof.h: #include sysdep.h instead of a bunch of stuff.
* gprof.c (main): Fix typo gproff->gprof.
Diffstat (limited to 'gprof/configure.in')
-rw-r--r-- | gprof/configure.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gprof/configure.in b/gprof/configure.in index f0698c3..fbec798 100644 --- a/gprof/configure.in +++ b/gprof/configure.in @@ -8,6 +8,12 @@ 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 ;; @@ -21,6 +27,3 @@ target_makefile_frag=config/mt-${my_target} if [ ! -f ${srcdir}/${target_makefile_frag} ] ; then target_makefile_frag= fi - -files= -links= |