xref: /minix/usr.bin/Makefile (revision cd34841d)
1#	$NetBSD: Makefile,v 1.214 2013/11/22 16:10:25 christos Exp $
2#	from: @(#)Makefile	8.3 (Berkeley) 1/7/94
3
4.include <bsd.own.mk>
5
6SUBDIR= asa \
7	banner basename \
8	bzip2 bzip2recover cal calendar \
9	checknr chpass cksum col colcrt colrm \
10	column comm csplit ctags cut \
11	deroff dirname du \
12	env expand \
13	false finger fold fpr from \
14	fsplit ftp genassym getopt \
15	head hexdump id indent infocmp join jot \
16	lam last ldd leave \
17	lock login logname lorder m4 \
18	machine make man menuc mesg \
19	mkdep mkfifo mkstr mktemp \
20	msgc \
21	nbperf newgrp nice nl nohup \
22	passwd paste patch pathchk pr \
23	printenv printf pwhash \
24	renice rev \
25	\
26	sdiff sed seq shar shlock \
27	shuffle  sort split stat su \
28	tail tee tic touch tput \
29	tr true tsort tty ul uname unexpand unifdef \
30	uniq units unvis unzip users \
31	uuidgen vis \
32	w \
33	wall wc what whereis who whois \
34	write xargs xinstall xstr yes
35
36.if !defined(__MINIX)
37SUBDIR+= ../external/zlib/pigz/bin/pigz
38.else
39# LSC FIXME For now we compile those unconditionnaly
40SUBDIR+= apropos whatis bdes soelim
41.endif # defined(__MINIX)
42
43.if (${MKGROFF} == "no")
44SUBDIR+= soelim
45.endif
46
47.if (${MKMAKEMANDB} == "no")
48SUBDIR+= apropos whatis
49.endif
50
51.if (${MKRUMP} != "no")
52SUBDIR+= rump_allserver rump_dhcpclient rump_halt rump_server
53.endif
54
55.if (${MKBSDGREP} != "no")
56SUBDIR+= grep
57.endif
58
59.if (${MKPIGZGZIP} != "no")
60# nothing
61.else
62SUBDIR+= gzip
63.endif
64
65.if (${MKHESIOD} != "no")
66SUBDIR+= hesinfo
67.endif
68
69.if (${MKSKEY} != "no")
70SUBDIR+= skey skeyinfo skeyinit
71.endif
72
73.if (${MKYP} != "no")
74SUBDIR+= ypcat ypmatch ypwhich
75.endif
76
77.if (${MKCRYPTO} != "no")
78SUBDIR+= bdes
79SUBDIR+= nbsvtool
80.endif
81
82.include <bsd.subdir.mk>
83