diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-02-06 14:22:34 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-02-06 14:22:34 +0000 |
commit | 2e7326637e61f011d39058f6e99e26c9008c4a53 (patch) | |
tree | e883e132e6926368e126b398f76957b6839a66a3 /sys/lib/libsa/Makefile | |
parent | f5deb2d68c8ffb793e3e05b713b05e865f88476f (diff) |
remove net/zlib.c (use -lz now)
export NO_NET and SA_ZLIB to the Makefile (from Makefile.inc)
add -p printf flag (tiny code) just for gcc -Wall
import latest alloc.c from netbsd
text data bss dec hex
400 8 0 408 198
Diffstat (limited to 'sys/lib/libsa/Makefile')
-rw-r--r-- | sys/lib/libsa/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/lib/libsa/Makefile b/sys/lib/libsa/Makefile index 0c419f43c33..26e1a0fff13 100644 --- a/sys/lib/libsa/Makefile +++ b/sys/lib/libsa/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 1997/02/06 07:05:48 mickey Exp $ +# $OpenBSD: Makefile,v 1.13 1997/02/06 14:22:32 mickey Exp $ # $NetBSD: Makefile,v 1.13 1996/10/02 16:19:51 ws Exp $ LIB= sa @@ -34,7 +34,7 @@ SRCS+= divdi3.c qdivrem.c .PATH: ${DIR}/../../lib/libkern # io routines -SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c ioctl.c \ +SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c cons.c ioctl.c \ lseek.c open.c nullfs.c read.c stat.c fstat.c write.c # boot filesystems @@ -42,9 +42,6 @@ SRCS+= ufs.c cd9660.c fat.c .if defined(SA_ZLIB) SRCS+= cread.c -SRCS+= zlib.c -.PATH: ${DIR}/../../net -CFLAGS+=-DNO_DEFALTE -I${DIR}/../../net .endif .if !defined(NO_NET) |