diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-06-21 17:50:33 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-06-21 17:50:33 +0000 |
commit | 9d11577a582935b75302adcb1137be1f1801b0ca (patch) | |
tree | b2bc041226b547940907db8259e61e832a26131a /binutils/Makefile.in | |
parent | a18ff4a73033d758ea00f412039af74a39ee5e57 (diff) | |
download | gdb-9d11577a582935b75302adcb1137be1f1801b0ca.zip gdb-9d11577a582935b75302adcb1137be1f1801b0ca.tar.gz gdb-9d11577a582935b75302adcb1137be1f1801b0ca.tar.bz2 |
* configure.in: Set nlmconv_defs to -DNLMCONV_cputype for all the
netware targets. Write it into Makefile as NLMCONV_DEFS.
* Makefile.in (nlmconv.o): Pass $(NLMCONV_DEFS) to $(CC).
* nlmconv.c: Only compile code for specific CPU types if
NLMCONV_cputype is defined.
Diffstat (limited to 'binutils/Makefile.in')
-rw-r--r-- | binutils/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/Makefile.in b/binutils/Makefile.in index 0bb07be..b0e8fc5 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -294,7 +294,7 @@ nlmheader.c: nlmheader.y nlmconv.o: nlmconv.c ldname=`t='$(program_transform_name)'; echo ld | sed -e "s/brokensed/brokensed/" $$t`; \ - $(CC) -c -DLD_NAME="\"$${ldname}\"" $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CFLAGS) $(srcdir)/nlmconv.c + $(CC) -c -DLD_NAME="\"$${ldname}\"" $(INCLUDES) $(HDEFINES) $(TDEFINES) $(NLMCONV_DEFS) $(CFLAGS) $(srcdir)/nlmconv.c $(NLMCONV_PROG): nlmconv.o nlmheader.o $(ADDL_LIBS) $(BFD) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ nlmconv.o nlmheader.o $(ADDL_LIBS) $(EXTRALIBS) |