NetBSD/sbin/ifconfig/Makefile

40 lines
667 B
Makefile
Raw Normal View History

2006-08-26 20:20:20 +04:00
# $NetBSD: Makefile,v 1.31 2006/08/26 16:20:20 matt Exp $
# @(#)Makefile 8.1 (Berkeley) 6/5/93
1993-03-21 12:45:37 +03:00
2005-03-20 17:24:13 +03:00
# when making a change to this file, please check if the change is
# also needed for src/distrib/utils/x_ifconfig/Makefile.
.include <bsd.own.mk>
1993-03-21 12:45:37 +03:00
PROG= ifconfig
1994-12-22 13:44:04 +03:00
MAN= ifconfig.8
1993-03-21 12:45:37 +03:00
CPPFLAGS+= -I${NETBSDSRCDIR}/sys/
.if (${USE_INET6} != "no")
CPPFLAGS+=-DINET6
.endif
# KAME scope id hack
CPPFLAGS+=-DKAME_SCOPEID
2002-09-21 01:21:53 +04:00
DPADD+=${LIBUTIL}
LDADD+=-lutil
SRCS= ifconfig.c
SRCS+= af_atalk.c
SRCS+= af_inet.c
.if (${USE_INET6} != "no")
SRCS+= af_inet6.c
.endif
SRCS+= af_iso.c
SRCS+= carp.c
SRCS+= agr.c
SRCS+= ieee80211.c
SRCS+= tunnel.c
SRCS+= vlan.c
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>