f3d5a9dc61
1. ack, a.out, minix headers (moved to /usr/include.ack), minix libc 2. gcc/clang, elf, netbsd headers (moved to /usr/include), netbsd libc (moved to /usr/lib) So this obsoletes the /usr/netbsd hierarchy. No special invocation for netbsd libc necessary - it's always used for gcc/clang.
18 lines
362 B
Makefile
18 lines
362 B
Makefile
# Minix makefile for libz.
|
|
|
|
LIB= z
|
|
|
|
SRCS= adler32.c compress.c crc32.c deflate.c gzclose.c gzlib.c gzread.c \
|
|
gzwrite.c infback.c inffast.c inflate.c inftrees.c trees.c uncompr.c zutil.c
|
|
|
|
.if (${NBSD_LIBC} != "no")
|
|
INCSDIR= /usr/include
|
|
.else
|
|
INCSDIR= /usr/include.ack
|
|
.endif
|
|
|
|
INCS= zconf.h zlib.h
|
|
|
|
CPPFLAGS += -DNO_VIZ=1
|
|
|
|
.include <bsd.lib.mk>
|