Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / usr.bin / locate / locate / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/6/93
2 # $FreeBSD: src/usr.bin/locate/locate/Makefile,v 1.11.2.4 2002/08/07 16:32:01 ru Exp $
3 # $DragonFly: src/usr.bin/locate/locate/Makefile,v 1.2 2003/06/17 04:29:28 dillon Exp $
4
5 PROG=   locate
6 SRCS=   util.c locate.c
7 CFLAGS+= -I${.CURDIR} -DMMAP # -DDEBUG (print time) -O2 (10% faster)
8 SCRIPTS=updatedb.sh mklocatedb.sh concatdb.sh
9 MAN=    locate.1 locate.updatedb.8
10
11 SCRIPTSDIR=     ${LIBEXECDIR}
12 .for script in ${SCRIPTS}
13 SCRIPTSNAME_${script}=  locate.${script:R}
14 .endfor
15 MLINKS+= locate.updatedb.8 updatedb.8
16
17 # only /usr/src/etc/Makefile install files in /etc
18 #       ${INSTALL} -o root -g wheel -m 644 \
19 #               ${.CURDIR}/locate.rc ${DESTDIR}/etc
20
21 .include "../../Makefile.inc"
22 .include <bsd.prog.mk>