Makefile revision 1.5
1#	from: @(#)Makefile	5.16 (Berkeley) 4/26/91
2#	$Id: Makefile,v 1.5 1993/10/28 03:28:46 cgd Exp $
3
4PROG=	routed
5SRCS=	af.c if.c input.c main.c output.c startup.c tables.c timer.c \
6	trace.c inet.c
7MAN8=	routed.0
8#SUBDIR=	query trace
9DPADD=	${LIBUTIL} ${LIBCOMPAT}
10LDADD=	-lutil 
11
12.include <bsd.prog.mk>
13
14.if (${MACHINE} == "vax")
15# The following can be deleted where not appropriate to use the kernel's
16# inline code expansions.
17INLINE=	/sys/vax/inline/obj/inline
18C2=	/usr/libexec/c2
19.c.o:
20	${CC} -S ${CFLAGS} ${.CURDIR}/${.PREFIX}.c
21	@${C2} ${.PREFIX}.s | ${INLINE} | ${AS} -o ${.PREFIX}.o
22	@rm -f ${.PREFIX}.s
23.endif
24