Home | History | Annotate | Line # | Download | only in routed
Makefile revision 1.1.1.4
      1 #	@(#)Makefile	8.1 (Berkeley) 6/19/93
      2 
      3 PROG=	routed
      4 SRCS=	if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c
      5 MAN8=	routed.0
      6 SUBDIR=	rtquery
      7 DPADD=	${LIBCOMPAT}
      8 LDADD=	-lcompat
      9 #COPTS=	-g -DDEBUG -Wall
     10 
     11 .include <bsd.prog.mk>
     12 
     13 .if (${MACHINE} == "vax")
     14 # The following can be deleted where not appropriate to use the kernel's
     15 # inline code expansions.
     16 INLINE=	/sys/vax/inline/obj/inline
     17 C2=	/usr/libexec/c2
     18 .c.o:
     19 	${CC} -S ${CFLAGS} ${.CURDIR}/${.PREFIX}.c
     20 	@${C2} ${.PREFIX}.s | ${INLINE} | ${AS} -o ${.PREFIX}.o
     21 	@rm -f ${.PREFIX}.s
     22 .endif
     23