Initial import from FreeBSD RELENG_4:
[dragonfly.git] / usr.sbin / mrouted / mrouted / Makefile
1 # $FreeBSD: src/usr.sbin/mrouted/mrouted/Makefile,v 1.13.2.1 2001/04/25 12:10:11 ru Exp $
2
3 PROG=   mrouted
4
5 S=      ${.CURDIR}/..
6 .PATH:  $S
7 CFLAGS+=        -I$S
8 YFLAGS=
9
10 SRCS=   config.c cfparse.y main.c route.c vif.c prune.c callout.c rsrr.c \
11         ipip.c icmp.c vers.c igmp.c inet.c kern.c
12 CLEANFILES+=    vers.c
13 MAN=    mrouted.8
14
15 vers.c: $S/VERSION
16         rm -f vers.c ; \
17         sed 's/.*/char todaysversion[] = "&";/' $S/VERSION > vers.c
18
19 .include <bsd.prog.mk>