diff options
author | wollman <wollman@FreeBSD.org> | 1996-02-28 18:47:46 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1996-02-28 18:47:46 +0000 |
commit | c49f72f04616737ed55d88464faf0eb3362a1c40 (patch) | |
tree | b7f73ce05d579292dfbccd39755b69cb01295ba3 | |
parent | b41fe501d795b54c049e23e7d759d90c55642f3f (diff) | |
download | FreeBSD-src-c49f72f04616737ed55d88464faf0eb3362a1c40.zip FreeBSD-src-c49f72f04616737ed55d88464faf0eb3362a1c40.tar.gz |
Clean up Makefile. Still needs -lcompat for insque/remque.
-rw-r--r-- | usr.sbin/routed/Makefile | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/usr.sbin/routed/Makefile b/usr.sbin/routed/Makefile index b2bdbf3..40e2701 100644 --- a/usr.sbin/routed/Makefile +++ b/usr.sbin/routed/Makefile @@ -1,4 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/19/93 +# $Id$ PROG= routed SRCS= af.c if.c input.c main.c output.c startup.c tables.c timer.c \ @@ -9,14 +10,3 @@ DPADD= ${LIBCOMPAT} LDADD= -lcompat .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 |