Add some clarificationc to lptcontrol manpage.
[unix-history] / usr.sbin / routed / Makefile
CommitLineData
15637ed4
RG
1# @(#)Makefile 5.16 (Berkeley) 4/26/91
2
3PROG= routed
4SRCS= af.c if.c input.c main.c output.c startup.c tables.c timer.c \
5 trace.c inet.c
8bdfd771 6MAN8= routed.8
15637ed4
RG
7SUBDIR= query trace
8DPADD= ${LIBUTIL} ${LIBCOMPAT}
9LDADD= -lutil
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.
16INLINE= /sys/vax/inline/obj/inline
17C2= /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