mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 15:44:04 +01:00
15 lines
398 B
Makefile
15 lines
398 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 5/31/93
|
|
# $Id: Makefile,v 1.2 1994/09/18 21:25:26 wollman Exp $
|
|
|
|
SUBDIR= cat chmod cp csh date dd df domainname echo
|
|
.if exists(../secure) && !defined(NOCRYPT) && !defined(NOSECURE)
|
|
SUBDIR+= ../secure/bin/ed
|
|
.else
|
|
SUBDUR+= ed
|
|
.endif
|
|
SUBDIR+= expr hostname \
|
|
kill ln ls mkdir mv pax ps pwd rcp rm rmail rmdir sh sleep \
|
|
stty sync test
|
|
|
|
.include <bsd.subdir.mk>
|