Makefile revision 1.12
1# $NetBSD: Makefile,v 1.12 1995/03/18 15:00:20 cgd Exp $ 2# @(#)Makefile 8.1 (Berkeley) 6/19/93 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