Makefile revision 1.8
1# $NetBSD: Makefile,v 1.8 1999/06/27 12:56:01 mrg 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=	getcap.c getgrent.c gethost.c getnet.c getnetgr.c getpwent.c \
9	localeconv.c perror.c setlocale.c \
10	strerror.c strsignal.c utmp.c yplib.c
11.ifndef NOLIBHACKOPENDIR
12SRCS+=        opendir.c
13.endif
14
15WARNS=	1
16MKPIC=	no
17MKLINT= no
18MKPROFILE=no
19
20all: libhack.a libhack.o
21
22CLEANFILES+=  libhack.o
23libhack.o : $(OBJS)
24	$(LD) -r -o $@ $(OBJS)
25
26tpwent: getpwent.c
27	$(CC) -g -o $@.o -DTEST_MAIN -c getpwent.c
28	$(CC) -o $@ $@.o
29
30.include <bsd.lib.mk>
31