]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - usr.bin/locate/locate/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.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 SCRIPTSDIR=     ${LIBEXECDIR}
11 .for script in ${SCRIPTS}
12 SCRIPTSNAME_${script}=  locate.${script:R}
13 .endfor
14 MLINKS+= locate.updatedb.8 updatedb.8
15
16 # only /usr/src/etc/Makefile install files in /etc
17 #       ${INSTALL} -o root -g wheel -m 644 \
18 #               ${.CURDIR}/locate.rc ${DESTDIR}/etc
19
20 .include "../../Makefile.inc"
21 .include <bsd.prog.mk>