diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-09-02 16:36:36 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-09-02 16:36:36 +0000 |
commit | a6762b10698457baabcaca45e7d81988d126ff86 (patch) | |
tree | cd067a52b16a8bcd7bc1410b55652945dbdae2ec /binutils | |
parent | 1849d6464ffff668a2c464e82b858c182362171d (diff) | |
download | gdb-a6762b10698457baabcaca45e7d81988d126ff86.zip gdb-a6762b10698457baabcaca45e7d81988d126ff86.tar.gz gdb-a6762b10698457baabcaca45e7d81988d126ff86.tar.bz2 |
Only build nlmconv if configured for a NetWare target.
* configure.in: If we have some *-*-netware* target, or are using
all targets, set BUILD_NLMCONV to $(NLMCONV_PROG) in Makefile.
* Makefile.in (PROGS): Use $(BUILD_NLMCONV) rather than
$(NLMCONV_PROG).
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 8 | ||||
-rw-r--r-- | binutils/Makefile.in | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 098332b..b3e1e58 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,11 @@ +Thu Sep 2 12:34:03 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com) + + Only build nlmconv if configured for a NetWare target. + * configure.in: If we have some *-*-netware* target, or are using + all targets, set BUILD_NLMCONV to $(NLMCONV_PROG) in Makefile. + * Makefile.in (PROGS): Use $(BUILD_NLMCONV) rather than + $(NLMCONV_PROG). + Tue Aug 31 14:13:35 1993 Ken Raeburn (raeburn@cambridge.cygnus.com) * objdump.c (ARCH_all): Define ARCH_hppa too. diff --git a/binutils/Makefile.in b/binutils/Makefile.in index 8ef0fd7..209a95e 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -102,7 +102,7 @@ DEMANGLER_PROG=c++filt NLMCONV_PROG=nlmconv -PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRINGS_PROG) $(STRIP_PROG) $(RANLIB_PROG) $(DEMANGLER_PROG) $(OBJCOPY_PROG) $(NLMCONV_PROG) +PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRINGS_PROG) $(STRIP_PROG) $(RANLIB_PROG) $(DEMANGLER_PROG) $(OBJCOPY_PROG) $(BUILD_NLMCONV) STAGESTUFF = $(PROGS) *.o # Files that can be generated, but should be in the distribution. DISTSTUFF=arparse.c arlex.c |