1 # $NetBSD: Makefile,v 1.17 2005/01/20 16:16:10 xtraeme Exp $ 2 # @(#)Makefile 8.1 (Berkeley) 6/5/93 3 4 .include <bsd.own.mk> 5 6 WARNS= 3 7 PROG= ifconfig 8 MAN= ifconfig.8 9 10 .if (${USE_INET6} != "no") 11 CPPFLAGS+=-DINET6 12 .endif 13 14 # KAME scope id hack 15 CPPFLAGS+=-DKAME_SCOPEID 16 17 DPADD+=${LIBUTIL} 18 LDADD+=-lutil 19 20 SRCS= ifconfig.c 21 22 .include <bsd.prog.mk> 23