Makefile revision 1.7
11.7Sgwr# $NetBSD: Makefile,v 1.7 1999/05/19 03:58:13 gwr Exp $ 21.1Sgwr# 31.1Sgwr# Stubs to kill off some things from libc: 41.1Sgwr# This save space on a boot system. 51.4Sgwr# (See Makefile.inc also.) 61.1Sgwr 71.1SgwrLIB= hack 81.7SgwrSRCS= getcap.c getgrent.c gethost.c getnet.c getnetgr.c getpwent.c \ 91.7Sgwr localeconv.c opendir.c perror.c setlocale.c \ 101.7Sgwr strerror.c strsignal.c utmp.c yplib.c 111.7Sgwr 121.6SsommerfeWARNS= 1 131.5SlukemMKPIC= no 141.6SsommerfeMKLINT= no 151.5SlukemMKPROFILE=no 161.1Sgwr 171.7Sgwrall: libhack.a libhack.o 181.7Sgwr 191.7SgwrCLEANFILES+= libhack.o 201.7Sgwrlibhack.o : $(OBJS) 211.7Sgwr $(LD) -r -o $@ $(OBJS) 221.2Sgwr 231.2Sgwrtpwent: getpwent.c 241.2Sgwr $(CC) -g -o $@.o -DTEST_MAIN -c getpwent.c 251.2Sgwr $(CC) -o $@ $@.o 261.1Sgwr 271.1Sgwr.include <bsd.lib.mk> 28