mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 15:44:04 +01:00
e4dbdeafbe
All the rest work! Actually, I don't know if chio works because I can't test that. df can be built using NetBSD's mount.h. ps depends on libkvm so there is no point trying.
13 lines
323 B
Makefile
13 lines
323 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 5/31/93
|
|
# $Id: Makefile,v 1.10 1998/03/13 19:39:14 jb Exp $
|
|
|
|
SUBDIR= cat chio chmod cp csh date dd domainname echo ed expr hostname \
|
|
kill ln ls mkdir mv pax pwd rcp rm rmail rmdir sh sleep \
|
|
stty sync test
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
SUBDIR+=df ps
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|