Makefile revision 1.28
1# $NetBSD: Makefile,v 1.28 2005/03/20 14:24:13 yamt Exp $ 2# @(#)Makefile 8.1 (Berkeley) 6/5/93 3 4# when making a change to this file, please check if the change is 5# also needed for src/distrib/utils/x_ifconfig/Makefile. 6 7.include <bsd.own.mk> 8 9WARNS= 3 10PROG= ifconfig 11MAN= ifconfig.8 12 13CPPFLAGS+= -I${NETBSDSRCDIR}/sys/ 14 15.if (${USE_INET6} != "no") 16CPPFLAGS+=-DINET6 17.endif 18 19# KAME scope id hack 20CPPFLAGS+=-DKAME_SCOPEID 21 22DPADD+=${LIBUTIL} 23LDADD+=-lutil 24 25SRCS= ifconfig.c 26 27SRCS+= af_atalk.c 28SRCS+= af_inet.c 29.if (${USE_INET6} != "no") 30SRCS+= af_inet6.c 31.endif 32SRCS+= af_iso.c 33SRCS+= af_ns.c 34 35SRCS+= agr.c 36SRCS+= ieee80211.c 37SRCS+= tunnel.c 38SRCS+= vlan.c 39 40.include <bsd.prog.mk> 41