1 # $NetBSD: Makefile,v 1.6 1999/03/13 19:08:43 sommerfe Exp $ 2 # 3 # Stubs to kill off some things from libc: 4 # This save space on a boot system. 5 # (See Makefile.inc also.) 6 7 LIB= hack 8 SRCS= getcap.c getgrent.c gethost.c getnet.c getnetgr.c getpwent.c setlocale.c yplib.c 9 WARNS= 1 10 MKPIC= no 11 MKLINT= no 12 MKPROFILE=no 13 14 all: libhack.a 15 16 tpwent: getpwent.c 17 $(CC) -g -o $@.o -DTEST_MAIN -c getpwent.c 18 $(CC) -o $@ $@.o 19 20 .include <bsd.lib.mk> 21