Makefile revision 1.34
1# $NetBSD: Makefile,v 1.34 2017/02/07 16:49:40 rin Exp $
2# Build a smaller ifconfig (i.e. for boot media)
3
4NOMAN=	# defined
5
6.include <bsd.own.mk>
7
8SRCDIR=		${.CURDIR}/../../../sbin/ifconfig
9
10
11CPPFLAGS+=	-DCRUNCHOPS
12.if defined(SMALLPROG_INET6) && (${USE_INET6} != "no")
13CPPFLAGS+=	-DINET6
14SRCS+= af_inet6.c
15.endif
16
17.ifdef SMALLPROG
18CPPFLAGS+=-DSMALL
19.endif
20
21PROG=	ifconfig
22.include "${.CURDIR}/../../../sbin/ifconfig/Makefile.inc"
23
24.include <bsd.prog.mk>
25
26.PATH:		${SRCDIR}
27