Deleted Added
sdiff udiff text old ( 142215 ) new ( 144130 )
full compact
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/sbin/ifconfig/Makefile 144130 2005-03-25 22:08:59Z brooks $
3
4PROG= ifconfig
5
6SRCS= ifconfig.c # base support
7
8#
9# NB: The order here defines the order in which the constructors
10# are called. This in turn defines the default order in which

--- 18 unchanged lines hidden (view full) ---

29.if !defined(RELEASE_CRUNCH)
30SRCS+= af_ipx.c # IPX support
31DPADD= ${LIBIPX}
32LDADD= -lipx
33.endif
34
35MAN= ifconfig.8
36
37CFLAGS+= -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wnested-externs
38WARNS?= 0
39
40.include <bsd.prog.mk>