Makefile revision 1.8
1# from: @(#)Makefile 5.16 (Berkeley) 4/26/91 2# $Id: Makefile,v 1.8 1994/01/28 00:38:59 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 9 10.include <bsd.prog.mk> 11 12.if (${MACHINE} == "vax") 13# The following can be deleted where not appropriate to use the kernel's 14# inline code expansions. 15INLINE= /sys/vax/inline/obj/inline 16C2= /usr/libexec/c2 17.c.o: 18 ${CC} -S ${CFLAGS} ${.CURDIR}/${.PREFIX}.c 19 @${C2} ${.PREFIX}.s | ${INLINE} | ${AS} -o ${.PREFIX}.o 20 @rm -f ${.PREFIX}.s 21.endif 22