mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-20 15:26:43 +01:00
22 lines
532 B
Makefile
22 lines
532 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/19/93
|
|
|
|
PROG= routed
|
|
SRCS= if.c input.c main.c md5.c output.c parms.c radix.c rdisc.c table.c \
|
|
trace.c
|
|
MAN8= routed.0
|
|
SUBDIR= rtquery
|
|
#COPTS= -g -DDEBUG -Wall
|
|
|
|
.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
|