Makefile revision 1.5
1# $NetBSD: Makefile,v 1.5 1999/02/13 02:54:18 lukem 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 setlocale.c yplib.c
9
10MKPIC=	no
11MKPROFILE=no
12
13all: libhack.a
14
15tpwent: getpwent.c
16	$(CC) -g -o $@.o -DTEST_MAIN -c getpwent.c
17	$(CC) -o $@ $@.o
18
19.include <bsd.lib.mk>
20