Makefile revision 1.25
1# $NetBSD: Makefile,v 1.25 2005/03/20 01:09:16 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 23 24SRCS+= af_atalk.c 25SRCS+= af_inet6.c 26SRCS+= af_iso.c 27SRCS+= af_ns.c 28 29SRCS+= agr.c 30SRCS+= ieee80211.c 31SRCS+= tunnel.c 32SRCS+= vlan.c 33 34.include <bsd.prog.mk> 35