mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-14 10:09:48 +00:00
8fae3551ec
Note: XNSrouted and routed NOT imported here, they shall be imported with usr.sbin.
26 lines
528 B
Makefile
26 lines
528 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
|
|
PROG= route
|
|
MAN8= route.0
|
|
SRCS= route.c ccitt_addr.c
|
|
CFLAGS+=-I.
|
|
CLEANFILES+=keywords.h
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
|
|
all: route ${MAN8}
|
|
|
|
keywords.h: keywords
|
|
sed -e '/^#/d' -e '/^$$/d' ${.CURDIR}/keywords > _keywords.tmp
|
|
tr a-z A-Z < _keywords.tmp | paste _keywords.tmp - | \
|
|
awk '{ \
|
|
if (NF > 1) \
|
|
printf "#define\tK_%s\t%d\n\t{\"%s\", K_%s},\n", \
|
|
$$2, NR, $$1, $$2 }' \
|
|
> ${.TARGET}
|
|
rm -f _keywords.tmp
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
route .depend lint tags: keywords.h
|