diff options
author | gpalmer <gpalmer@FreeBSD.org> | 1994-10-15 20:50:05 +0000 |
---|---|---|
committer | gpalmer <gpalmer@FreeBSD.org> | 1994-10-15 20:50:05 +0000 |
commit | e83980ba75b14cde431bc239a582f30e506805be (patch) | |
tree | 3b3d824fc16a85b4d167a2075539aab96229bcd5 /usr.bin | |
parent | c36ba28ab3e6ad060ded600479251edf13f08e08 (diff) | |
download | FreeBSD-src-e83980ba75b14cde431bc239a582f30e506805be.zip FreeBSD-src-e83980ba75b14cde431bc239a582f30e506805be.tar.gz |
Fix up this makefile so that it handles `clean' and `cleandir' properly.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 122d94f..822c2eb 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.3 (Berkeley) 1/7/94 -# $Id: Makefile,v 1.21 1994/09/23 00:00:57 ache Exp $ +# $Id: Makefile,v 1.22 1994/09/26 23:14:31 pst Exp $ # XXX MISSING: bc dc deroff diction diff ex graph learn plot # ptx spell spline struct units xsend @@ -28,7 +28,9 @@ SUBDIR= apply ar at banner basename biff cal calendar \ # Cmp, look and tail all use mmap, so new-VM only. # F77 and pascal are VAX/Tahoe only. -.if ${MACHINE} == "hp300" +.if make(clean) || make(cleandir) +SUBDIR+=cmp f77 pascal ld look systat tail vmstat vmstat.sparc +.elif ${MACHINE} == "hp300" SUBDIR+=cmp ld look systat tail vmstat .elif ${MACHINE} == "i386" SUBDIR+=cmp look systat tail vmstat |