diff options
author | bde <bde@FreeBSD.org> | 1997-12-17 19:49:09 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-12-17 19:49:09 +0000 |
commit | eeba28eca5be919a399be2a3e4e54f5df163e17d (patch) | |
tree | 17828fc7d0aebf51b30b070bb3a0630e8110dc90 /usr.bin/locate | |
parent | 7c7c2d2637cf65d1fc3da9309a20f105a1e3162d (diff) | |
download | FreeBSD-src-eeba28eca5be919a399be2a3e4e54f5df163e17d.zip FreeBSD-src-eeba28eca5be919a399be2a3e4e54f5df163e17d.tar.gz |
<bsd.prog.mk> has always included ../Makefile.inc, and there are no
complications involving .PATH or dependencies, so don't include it here.
Diffstat (limited to 'usr.bin/locate')
-rw-r--r-- | usr.bin/locate/bigram/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/locate/code/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/locate/locate/Makefile | 3 |
3 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/locate/bigram/Makefile b/usr.bin/locate/bigram/Makefile index fbba14d..bcb016e 100644 --- a/usr.bin/locate/bigram/Makefile +++ b/usr.bin/locate/bigram/Makefile @@ -1,9 +1,9 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 +# $Id$ PROG= locate.bigram NOMAN= noman BINDIR= ${LIBEXECDIR} CFLAGS+= -I${.CURDIR}/../locate -.include "../Makefile.inc" .include <bsd.prog.mk> diff --git a/usr.bin/locate/code/Makefile b/usr.bin/locate/code/Makefile index a7d8e80..7e4c4fd 100644 --- a/usr.bin/locate/code/Makefile +++ b/usr.bin/locate/code/Makefile @@ -1,9 +1,9 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 +# $Id$ PROG= locate.code CFLAGS+=-I${.CURDIR}/../locate NOMAN= noman BINDIR= ${LIBEXECDIR} -.include "../Makefile.inc" .include <bsd.prog.mk> diff --git a/usr.bin/locate/locate/Makefile b/usr.bin/locate/locate/Makefile index 5e20b83..c1b14bf 100644 --- a/usr.bin/locate/locate/Makefile +++ b/usr.bin/locate/locate/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $Id$ PROG= locate SRCS= util.c locate.c @@ -21,5 +21,4 @@ beforeinstall: # ${.CURDIR}/locate.rc ${DESTDIR}/etc .include "../../Makefile.inc" -.include "../Makefile.inc" .include <bsd.prog.mk> |