Makefile revision 1.4
1# $NetBSD: Makefile,v 1.4 1997/12/12 03:36:38 gwr 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 7LIB= hack 8SRCS= getgrent.c gethost.c getnet.c getnetgr.c getpwent.c \ 9 setlocale.c yplib.c 10 11NOPIC= 12NOPROFILE= 13 14all: libhack.a 15 16tpwent: getpwent.c 17 $(CC) -g -o $@.o -DTEST_MAIN -c getpwent.c 18 $(CC) -o $@ $@.o 19 20.include <bsd.lib.mk> 21