[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / sbin / routed

File: [local] / src / sbin / routed / Attic / Makefile (download)

Revision 1.17, Fri Jun 16 15:48:42 2006 UTC (17 years, 11 months ago) by claudio
Branch: MAIN
CVS Tags: OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2, OPENBSD_4_1_BASE, OPENBSD_4_1, OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.16: +2 -2 lines

Make routed no longer use kernel API prototypes for own functions -- this is
totaly braindead and will break as soon as we change something in radix.h.
Instead pull in the needed defines and prototypes into defs.h.
OK henning@, hshoexer@

#	$OpenBSD: Makefile,v 1.17 2006/06/16 15:48:42 claudio Exp $

PROG=	routed
SRCS=	if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c
MAN=	routed.8
CFLAGS+=-D'min(a,b)=((a) < (b) ? (a) : (b))' -D'log=syslog'
CFLAGS+=-D'panic(s)={log(LOG_ERR, "%s", s); exit(1);}'
SUBDIR=	rtquery

# Do *NOT* turn this flag on unless you like security holes
#CFLAGS+=-DPERMIT_TRACE

.include <bsd.prog.mk>