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