NetBSD/sbin/routed/Makefile

24 lines
608 B
Makefile
Raw Normal View History

1994-05-13 12:02:16 +04:00
# from: @(#)Makefile 8.1 (Berkeley) 6/19/93
1994-05-15 04:50:38 +04:00
# $Id: Makefile,v 1.10 1994/05/15 00:50:38 cgd Exp $
1993-03-21 12:45:37 +03:00
PROG= routed
SRCS= af.c if.c input.c main.c output.c startup.c tables.c timer.c \
1993-03-21 12:45:37 +03:00
trace.c inet.c
MAN8= routed.0
1994-05-15 04:50:38 +04:00
#SUBDIR= query trace
1994-05-13 12:02:16 +04:00
DPADD= ${LIBCOMPAT}
LDADD= -lcompat
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>
.if (${MACHINE} == "vax")
# The following can be deleted where not appropriate to use the kernel's
# inline code expansions.
INLINE= /sys/vax/inline/obj/inline
C2= /usr/libexec/c2
.c.o:
${CC} -S ${CFLAGS} ${.CURDIR}/${.PREFIX}.c
@${C2} ${.PREFIX}.s | ${INLINE} | ${AS} -o ${.PREFIX}.o
@rm -f ${.PREFIX}.s
.endif