Makefile revision 1.13
1# $NetBSD: Makefile,v 1.13 2001/12/12 00:05:10 tv 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 16NOLINKLIB= # defined 17NOLINT= # defined 18NOPIC= # defined 19NOPROFILE= # defined 20 21realall: libhack.o 22 23libhack.o: libhack.a 24 ${LD} -r -o $@ --whole-archive libhack.a 25 26CLEANFILES+= libhack.o 27 28tpwent: getpwent.c 29 ${CC} -g -o $@.o -DTEST_MAIN -c getpwent.c 30 ${CC} -o $@ $@.o 31 32.include <bsd.lib.mk> 33