Home | History | Annotate | Line # | Download | only in init
Makefile revision 1.29
      1 #	$NetBSD: Makefile,v 1.29 2002/08/02 14:03:22 christos Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 7/19/93
      3 
      4 PROG=	init
      5 MAN=	init.8
      6 DPADD=	${LIBUTIL}
      7 LDADD=	-lutil
      8 CPPFLAGS+=	-DMFS_DEV_IF_NO_CONSOLE -DSUPPORT_UTMP -DSUPPORT_UTMPX
      9 
     10 .ifdef	SMALLPROG
     11 CPPFLAGS+=	-DLETS_GET_SMALL
     12 .else
     13 CPPFLAGS+=	-DALTSHELL -DSECURE
     14 DPADD+=		${LIBCRYPT}
     15 LDADD+=		-lcrypt
     16 .endif
     17 
     18 
     19 .include <bsd.prog.mk>
     20 
     21 LDSTATIC=-static
     22