blob: 3dadc5af03859f30695b9d6a87c707793dac6fd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.3 2000/03/01 22:10:13 todd Exp $
# $NetBSD: Makefile,v 1.4 1996/03/27 04:48:46 scottr Exp $
# Build a smaller ifconfig (i.e. for boot media)
PROG= ifconfig
NOMAN=
SRCDIR= ${.CURDIR}/../../../sbin/ifconfig
CFLAGS+= -DINET_ONLY -I${SRCDIR}
all: ${PROG}
.include <bsd.prog.mk>
.PATH: ${SRCDIR}
|