Makefile revision 1.11
1#	from: @(#)Makefile	8.1 (Berkeley) 6/19/93
2#	$Id: Makefile,v 1.11 1994/12/22 10:48:37 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
7MAN=	routed.8
8#SUBDIR=	query trace
9DPADD=	${LIBCOMPAT}
10LDADD=	-lcompat
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