]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.bin/locate/locate/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / usr.bin / locate / locate / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/6/93
2 # $FreeBSD$
3
4 PROG=   locate
5 SRCS=   util.c locate.c
6 CFLAGS+= -I${.CURDIR} -DMMAP # -DDEBUG (print time) -O2 (10% faster)
7 SCRIPTS=updatedb.sh mklocatedb.sh concatdb.sh
8 MAN=    locate.1 locate.updatedb.8
9
10 WARNS?= 2
11
12 SCRIPTSDIR=     ${LIBEXECDIR}
13 .for script in ${SCRIPTS}
14 SCRIPTSNAME_${script}=  locate.${script:R}
15 .endfor
16 MLINKS+= locate.updatedb.8 updatedb.8
17
18 # only /usr/src/etc/Makefile install files in /etc
19 #       ${INSTALL} -o root -g wheel -m 644 \
20 #               ${.CURDIR}/locate.rc ${DESTDIR}/etc
21
22 .include "../../Makefile.inc"
23 .include <bsd.prog.mk>