Makefile revision 1.1
11.1Scgd# @(#)Makefile 5.16 (Berkeley) 4/26/91 21.1Scgd 31.1ScgdPROG= routed 41.1ScgdSRCS= af.c if.c input.c main.c output.c startup.c tables.c timer.c \ 51.1Scgd trace.c inet.c 61.1ScgdMAN8= routed.0 71.1ScgdSUBDIR= query trace 81.1ScgdDPADD= ${LIBUTIL} ${LIBCOMPAT} 91.1ScgdLDADD= -lutil 101.1Scgd 111.1Scgd.include <bsd.prog.mk> 121.1Scgd 131.1Scgd.if (${MACHINE} == "vax") 141.1Scgd# The following can be deleted where not appropriate to use the kernel's 151.1Scgd# inline code expansions. 161.1ScgdINLINE= /sys/vax/inline/obj/inline 171.1ScgdC2= /usr/libexec/c2 181.1Scgd.c.o: 191.1Scgd ${CC} -S ${CFLAGS} ${.CURDIR}/${.PREFIX}.c 201.1Scgd @${C2} ${.PREFIX}.s | ${INLINE} | ${AS} -o ${.PREFIX}.o 211.1Scgd @rm -f ${.PREFIX}.s 221.1Scgd.endif 23