diff options
author | csgr <csgr@FreeBSD.org> | 1994-04-19 06:43:36 +0000 |
---|---|---|
committer | csgr <csgr@FreeBSD.org> | 1994-04-19 06:43:36 +0000 |
commit | b09772d5b5f82548f33e29d121607c7dd1025f24 (patch) | |
tree | bdc6ea73af0ad42eb141ee5d88b9b66aae332986 /usr.sbin/manctl/Makefile | |
parent | 174475f39f68896fdd97f61d201b7996ef2336c6 (diff) | |
download | FreeBSD-src-b09772d5b5f82548f33e29d121607c7dd1025f24.zip FreeBSD-src-b09772d5b5f82548f33e29d121607c7dd1025f24.tar.gz |
Fixed Makefile problem pointed out by Piero Serini
Diffstat (limited to 'usr.sbin/manctl/Makefile')
-rw-r--r-- | usr.sbin/manctl/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/usr.sbin/manctl/Makefile b/usr.sbin/manctl/Makefile index 686e605..af83bf7 100644 --- a/usr.sbin/manctl/Makefile +++ b/usr.sbin/manctl/Makefile @@ -1,7 +1,11 @@ # Makefile -# $Id: Makefile,v 1.1 1994/04/17 21:01:16 g89r4222 Exp $ -install: manctl.sh - install -o ${BINOWN} -g ${BINGRP} -m 555 manctl.sh \ +# $Id: Makefile,v 1.1.1.1 1994/04/17 21:26:21 csgr Exp $ + +all: manctl.sh + /bin/cp ${.CURDIR}/manctl.sh manctl + +install: all + install -o ${BINOWN} -g ${BINGRP} -m 555 manctl \ ${DESTDIR}/usr/sbin/manctl .include <bsd.prog.mk> |