Home | History | Annotate | Line # | Download | only in libhack
Makefile revision 1.2.6.1
      1 # $NetBSD: Makefile,v 1.2.6.1 1996/09/13 20:01:56 gwr Exp $
      2 #
      3 # Stubs to kill off some things from libc:
      4 # This save space on a boot system.
      5 #
      6 
      7 LIB=	hack
      8 SRCS=	getgrent.c gethost.c getnetgr.c getpwent.c \
      9 	setlocale.c yplib.c
     10 
     11 NOPIC=
     12 NOPROFILE=
     13 
     14 all: libhack.a
     15 
     16 tpwent: getpwent.c
     17 	$(CC) -g -o $@.o -DTEST_MAIN -c getpwent.c
     18 	$(CC) -o $@ $@.o
     19 
     20 .include <bsd.lib.mk>
     21