diff options
| author | Cameron Katri <me@cameronkatri.com> | 2021-05-10 11:59:14 -0400 |
|---|---|---|
| committer | Cameron Katri <me@cameronkatri.com> | 2021-05-10 14:59:06 -0400 |
| commit | 0d0ad219a6366e30e1b1ae41f79c8e10a21ade6d (patch) | |
| tree | 6c00373b0ec2a5f83ddad990b0ed347675bfa57d /shell_cmds/locate | |
| parent | b9db19b71926ba1d2b0722a43cf538bf139fc0d9 (diff) | |
| download | apple_cmds-0d0ad219a6366e30e1b1ae41f79c8e10a21ade6d.tar.gz apple_cmds-0d0ad219a6366e30e1b1ae41f79c8e10a21ade6d.zip | |
shell_cmds: All compiled
Diffstat (limited to 'shell_cmds/locate')
| -rw-r--r-- | shell_cmds/locate/Makefile | 3 | ||||
| -rw-r--r-- | shell_cmds/locate/bigram/Makefile | 8 | ||||
| -rw-r--r-- | shell_cmds/locate/code/Makefile | 8 | ||||
| -rw-r--r-- | shell_cmds/locate/locate/Makefile | 17 |
4 files changed, 36 insertions, 0 deletions
diff --git a/shell_cmds/locate/Makefile b/shell_cmds/locate/Makefile new file mode 100644 index 0000000..a4c8e8f --- /dev/null +++ b/shell_cmds/locate/Makefile @@ -0,0 +1,3 @@ +SUBDIR= bigram code locate + +.include <bsd.subdir.mk> diff --git a/shell_cmds/locate/bigram/Makefile b/shell_cmds/locate/bigram/Makefile new file mode 100644 index 0000000..1740f30 --- /dev/null +++ b/shell_cmds/locate/bigram/Makefile @@ -0,0 +1,8 @@ +PROG= locate.bigram +MAN= locate.bigram.8 + +BINDIR=/usr/libexec + +CFLAGS+=-I../locate + +.include <bsd.prog.mk> diff --git a/shell_cmds/locate/code/Makefile b/shell_cmds/locate/code/Makefile new file mode 100644 index 0000000..4c06f77 --- /dev/null +++ b/shell_cmds/locate/code/Makefile @@ -0,0 +1,8 @@ +PROG= locate.code +MAN= locate.code.8 + +BINDIR=/usr/libexec + +CFLAGS+=-I../locate + +.include <bsd.prog.mk> diff --git a/shell_cmds/locate/locate/Makefile b/shell_cmds/locate/locate/Makefile new file mode 100644 index 0000000..cf5717b --- /dev/null +++ b/shell_cmds/locate/locate/Makefile @@ -0,0 +1,17 @@ +# @(#)Makefile 8.1 (Berkeley) 6/6/93 +# $FreeBSD$ + +CONFS= locate.rc +PROG= locate +SRCS= util.c locate.c +CFLAGS+= -I${.CURDIR} -DMMAP # -DDEBUG (print time) -O2 (10% faster) +SCRIPTS=updatedb.sh mklocatedb.sh concatdb.sh +MAN= locate.1 locate.updatedb.8 + +SCRIPTSDIR= ${LIBEXECDIR} +.for script in ${SCRIPTS} +SCRIPTSNAME_${script}= locate.${script:R} +.endfor +MLINKS+= locate.updatedb.8 updatedb.8 + +.include <bsd.prog.mk> |
