Makefile revision 1.21
1# $NetBSD: Makefile,v 1.21 2005/03/19 23:13:42 thorpej Exp $ 2# @(#)Makefile 8.1 (Berkeley) 6/5/93 3 4.include <bsd.own.mk> 5 6WARNS= 3 7PROG= ifconfig 8MAN= ifconfig.8 9 10CPPFLAGS+= -I${NETBSDSRCDIR}/sys/ 11 12.if (${USE_INET6} != "no") 13CPPFLAGS+=-DINET6 14.endif 15 16# KAME scope id hack 17CPPFLAGS+=-DKAME_SCOPEID 18 19DPADD+=${LIBUTIL} 20LDADD+=-lutil 21 22SRCS= ifconfig.c 23SRCS+= agr.c 24SRCS+= ieee80211.c 25SRCS+= tunnel.c 26SRCS+= vlan.c 27 28.include <bsd.prog.mk> 29