1 1.23 thorpej # $NetBSD: Makefile,v 1.23 2005/03/19 23:46:03 thorpej Exp $ 2 1.7 cgd # @(#)Makefile 8.1 (Berkeley) 6/5/93 3 1.1 cgd 4 1.16 lukem .include <bsd.own.mk> 5 1.16 lukem 6 1.17 xtraeme WARNS= 3 7 1.1 cgd PROG= ifconfig 8 1.6 cgd MAN= ifconfig.8 9 1.8 itojun 10 1.18 yamt CPPFLAGS+= -I${NETBSDSRCDIR}/sys/ 11 1.18 yamt 12 1.16 lukem .if (${USE_INET6} != "no") 13 1.10 itojun CPPFLAGS+=-DINET6 14 1.16 lukem .endif 15 1.11 itojun 16 1.11 itojun # KAME scope id hack 17 1.11 itojun CPPFLAGS+=-DKAME_SCOPEID 18 1.14 christos 19 1.14 christos DPADD+=${LIBUTIL} 20 1.14 christos LDADD+=-lutil 21 1.1 cgd 22 1.15 dsl SRCS= ifconfig.c 23 1.22 thorpej 24 1.22 thorpej SRCS+= af_atalk.c 25 1.23 thorpej SRCS+= af_ns.c 26 1.22 thorpej 27 1.18 yamt SRCS+= agr.c 28 1.21 thorpej SRCS+= ieee80211.c 29 1.20 thorpej SRCS+= tunnel.c 30 1.19 thorpej SRCS+= vlan.c 31 1.15 dsl 32 1.1 cgd .include <bsd.prog.mk> 33