aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/manctl/Makefile
diff options
context:
space:
mode:
authorGeoff Rehmet <csgr@FreeBSD.org>1994-05-26 07:52:23 +0000
committerGeoff Rehmet <csgr@FreeBSD.org>1994-05-26 07:52:23 +0000
commitf38100393fbb97398392ec669a89a974d2530839 (patch)
tree16014926bc7f0f2973143f1d1614a6521b951706 /usr.sbin/manctl/Makefile
parent3219c922a9b5bb60c7773ad93345d871bce72a68 (diff)
>From Jordan
Fix braindeadness in my makefile
Notes
Notes: svn path=/head/; revision=1562
Diffstat (limited to 'usr.sbin/manctl/Makefile')
-rw-r--r--usr.sbin/manctl/Makefile10
1 files changed, 4 insertions, 6 deletions
diff --git a/usr.sbin/manctl/Makefile b/usr.sbin/manctl/Makefile
index af83bf7cfe99..527274054555 100644
--- a/usr.sbin/manctl/Makefile
+++ b/usr.sbin/manctl/Makefile
@@ -1,11 +1,9 @@
# Makefile
-# $Id: Makefile,v 1.1.1.1 1994/04/17 21:26:21 csgr Exp $
+# $Id: Makefile,v 1.2 1994/04/19 06:43:36 csgr Exp $
-all: manctl.sh
- /bin/cp ${.CURDIR}/manctl.sh manctl
+all:
+ @echo -n
install: all
- install -o ${BINOWN} -g ${BINGRP} -m 555 manctl \
+ install -c -o ${BINOWN} -g ${BINGRP} -m 555 ${.CURDIR}/manctl.sh \
${DESTDIR}/usr/sbin/manctl
-
-.include <bsd.prog.mk>