Home | History | Annotate | Line # | Download | only in routed
Makefile revision 1.12
      1  1.12      cgd #	$NetBSD: Makefile,v 1.12 1995/03/18 15:00:20 cgd Exp $
      2  1.12      cgd #	@(#)Makefile	8.1 (Berkeley) 6/19/93
      3   1.1      cgd 
      4   1.1      cgd PROG=	routed
      5   1.7      cgd SRCS=	af.c if.c input.c main.c output.c startup.c tables.c timer.c \
      6   1.1      cgd 	trace.c inet.c
      7  1.11      cgd MAN=	routed.8
      8  1.10      cgd #SUBDIR=	query trace
      9   1.9  mycroft DPADD=	${LIBCOMPAT}
     10   1.9  mycroft LDADD=	-lcompat
     11   1.1      cgd 
     12   1.1      cgd .include <bsd.prog.mk>
     13   1.1      cgd 
     14   1.1      cgd .if (${MACHINE} == "vax")
     15   1.1      cgd # The following can be deleted where not appropriate to use the kernel's
     16   1.1      cgd # inline code expansions.
     17   1.1      cgd INLINE=	/sys/vax/inline/obj/inline
     18   1.1      cgd C2=	/usr/libexec/c2
     19   1.1      cgd .c.o:
     20   1.1      cgd 	${CC} -S ${CFLAGS} ${.CURDIR}/${.PREFIX}.c
     21   1.1      cgd 	@${C2} ${.PREFIX}.s | ${INLINE} | ${AS} -o ${.PREFIX}.o
     22   1.1      cgd 	@rm -f ${.PREFIX}.s
     23   1.1      cgd .endif
     24