diff options
author | grant <grant> | 2005-02-15 23:35:42 +0000 |
---|---|---|
committer | grant <grant> | 2005-02-15 23:35:42 +0000 |
commit | e4b559c9819ac638f74503801ad7fbcfa703884a (patch) | |
tree | b812d8ad96367a9c69e681b3fed14d9474e91da6 /pkgtools | |
parent | 30d4393a7124417af3f7c1c1244a4cb267e878dd (diff) | |
download | pkgsrc-e4b559c9819ac638f74503801ad7fbcfa703884a.tar.gz |
redo previous in a slightly different way to appease NetBSD make(1).
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/libnbcompat/files/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgtools/libnbcompat/files/Makefile.in b/pkgtools/libnbcompat/files/Makefile.in index 8d103c00a20..d169739fc74 100644 --- a/pkgtools/libnbcompat/files/Makefile.in +++ b/pkgtools/libnbcompat/files/Makefile.in @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.in,v 1.29 2005/02/15 16:04:42 wiz Exp $ +# $NetBSD: Makefile.in,v 1.30 2005/02/15 23:35:42 grant Exp $ # srcdir= @srcdir@ @@ -7,6 +7,7 @@ VPATH= @srcdir@ SHELL= /bin/sh CC= @CC@ +CCLD= @CC@ CFLAGS= -I$(srcdir) -I. @INCLUDES@ @CFLAGS@ CPPFLAGS= @CPPFLAGS@ DEFS= @DEFS@ @@ -77,7 +78,8 @@ nbcompat/nbtypes.h: bits ./bits $@ bits: bits.c - $(COMPILE) $(DEFS) -o bits bits.c + $(COMPILE) $(DEFS) -c $< + $(LINK) bits.o install: $(INSTALL) -m 755 -d $(prefix)/lib |