1 # @(#)Makefile 8.1 (Berkeley) 6/19/93 2 3 PROG= routed 4 SRCS= if.c input.c main.c md5.c output.c parms.c radix.c rdisc.c table.c \ 5 trace.c 6 MAN8= routed.0 7 SUBDIR= rtquery 8 #COPTS= -g -DDEBUG -Wall 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. 15 INLINE= /sys/vax/inline/obj/inline 16 C2= /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