diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1993-08-06 23:28:02 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1993-08-06 23:28:02 +0000 |
commit | ffef03e71087f8db7c04dc75e8161bb426825ee0 (patch) | |
tree | ff8e87b6a32f92fc98a4718c3800f0a915663da2 | |
parent | 1701a0d1552ee9c3d76a0b7e92845e33b373b2e1 (diff) | |
download | FreeBSD-src-ffef03e71087f8db7c04dc75e8161bb426825ee0.zip FreeBSD-src-ffef03e71087f8db7c04dc75e8161bb426825ee0.tar.gz |
Since there are no c sources in this directory we need a null depend:
target. I added this.
-rw-r--r-- | gnu/libexec/uucp/uusched/Makefile | 5 | ||||
-rw-r--r-- | gnu/libexec/uucp/uuto/Makefile | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gnu/libexec/uucp/uusched/Makefile b/gnu/libexec/uucp/uusched/Makefile index ca0aa32..6135e53 100644 --- a/gnu/libexec/uucp/uusched/Makefile +++ b/gnu/libexec/uucp/uusched/Makefile @@ -1,5 +1,5 @@ # Makefile for uusched -# $Id: Makefile,v 1.2 1993/08/05 16:14:03 jtc Exp $ +# $Id: Makefile,v 1.1 1993/08/05 18:27:55 conklin Exp $ BINDIR= $(bindir) @@ -12,4 +12,7 @@ uusched: uusched.in sed -e "s|@BINDIR@|$(bindir)|g" -e "s|@SBINDIR@|$(sbindir)|g" \ $(.CURDIR)/uusched.in > $(.TARGET) +depend: + + .include <bsd.prog.mk> diff --git a/gnu/libexec/uucp/uuto/Makefile b/gnu/libexec/uucp/uuto/Makefile index 7caef8f..8c3437e 100644 --- a/gnu/libexec/uucp/uuto/Makefile +++ b/gnu/libexec/uucp/uuto/Makefile @@ -1,5 +1,5 @@ # Makefile for uuto -# $Id: Makefile,v 1.2 1993/08/05 16:14:06 jtc Exp $ +# $Id: Makefile,v 1.1 1993/08/05 18:28:09 conklin Exp $ BINDIR= $(bindir) @@ -12,4 +12,6 @@ uuto: uuto.in sed -e "s|@BINDIR@|$(bindir)|g" -e "s|@SBINDIR@|$(sbindir)|g" \ $(.CURDIR)/uuto.in > $(.TARGET) +depend: + .include <bsd.prog.mk> |