1 1.30 liamjfoy # $NetBSD: Makefile,v 1.30 2006/05/18 09:05:49 liamjfoy Exp $ 2 1.7 cgd # @(#)Makefile 8.1 (Berkeley) 6/5/93 3 1.1 cgd 4 1.28 yamt # when making a change to this file, please check if the change is 5 1.28 yamt # also needed for src/distrib/utils/x_ifconfig/Makefile. 6 1.28 yamt 7 1.16 lukem .include <bsd.own.mk> 8 1.16 lukem 9 1.1 cgd PROG= ifconfig 10 1.6 cgd MAN= ifconfig.8 11 1.8 itojun 12 1.18 yamt CPPFLAGS+= -I${NETBSDSRCDIR}/sys/ 13 1.18 yamt 14 1.16 lukem .if (${USE_INET6} != "no") 15 1.10 itojun CPPFLAGS+=-DINET6 16 1.16 lukem .endif 17 1.11 itojun 18 1.11 itojun # KAME scope id hack 19 1.11 itojun CPPFLAGS+=-DKAME_SCOPEID 20 1.14 christos 21 1.14 christos DPADD+=${LIBUTIL} 22 1.14 christos LDADD+=-lutil 23 1.1 cgd 24 1.15 dsl SRCS= ifconfig.c 25 1.22 thorpej 26 1.22 thorpej SRCS+= af_atalk.c 27 1.26 thorpej SRCS+= af_inet.c 28 1.27 thorpej .if (${USE_INET6} != "no") 29 1.25 thorpej SRCS+= af_inet6.c 30 1.27 thorpej .endif 31 1.24 thorpej SRCS+= af_iso.c 32 1.23 thorpej SRCS+= af_ns.c 33 1.30 liamjfoy SRCS+= carp.c 34 1.22 thorpej 35 1.18 yamt SRCS+= agr.c 36 1.21 thorpej SRCS+= ieee80211.c 37 1.20 thorpej SRCS+= tunnel.c 38 1.19 thorpej SRCS+= vlan.c 39 1.15 dsl 40 1.1 cgd .include <bsd.prog.mk> 41