Makefile revision 1.17
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 6WARNS= 3 7PROG= ifconfig 8MAN= ifconfig.8 9 10.if (${USE_INET6} != "no") 11CPPFLAGS+=-DINET6 12.endif 13 14# KAME scope id hack 15CPPFLAGS+=-DKAME_SCOPEID 16 17DPADD+=${LIBUTIL} 18LDADD+=-lutil 19 20SRCS= ifconfig.c 21 22.include <bsd.prog.mk> 23