Deleted Added
full compact
Makefile (142215) Makefile (144130)
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/sbin/ifconfig/Makefile 142215 2005-02-22 13:04:05Z glebius $
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
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+= -g -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings \
38 -Wnested-externs -I..
37CFLAGS+= -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wnested-externs
39WARNS?= 0
40
41.include <bsd.prog.mk>
38WARNS?= 0
39
40.include <bsd.prog.mk>