xref: /minix/usr.bin/Makefile (revision 6c8f7fc3)
1#	$NetBSD: Makefile,v 1.210 2012/08/08 14:13:46 christos Exp $
2#	from: @(#)Makefile	8.3 (Berkeley) 1/7/94
3
4.include <bsd.own.mk>
5
6SUBDIR= asa \
7	banner basename bdes \
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	finger fold fpr from \
14	fsplit ftp genassym getopt \
15	head hexdump id indent infocmp join jot \
16	lam 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 nvi \
22	passwd paste pathchk pr \
23	printenv printf pwhash \
24	renice rev \
25	\
26	sdiff sed seq shlock \
27	shuffle soelim sort split stat su \
28	tee tic tput \
29	tr tsort tty ul uname unexpand unifdef \
30	toproto \
31	uniq units unvis unzip users \
32	uuidgen vis \
33	\
34	wc what who whois \
35	write xargs xinstall xstr yes
36
37.if !defined(__MINIX)
38SUBDIR+= ../external/zlib/pigz/bin/pigz
39.else
40# Non-NetBSD imports
41SUBDIR+= ministat
42
43# Minix commands
44SUBDIR+= top
45SUBDIR+= toproto
46
47# LSC FIXME For now we compile unconditionnaly apropos and whatis even if we
48# do not have whatis
49SUBDIR+= apropos whatis
50.endif # defie
51
52.if (${MKMAKEMANDB} == "no")
53SUBDIR+= apropos whatis
54.endif
55
56.if (${MKRUMP} != "no")
57SUBDIR+= rump_allserver rump_dhcpclient rump_halt rump_server
58.endif
59
60.if (${MKBSDGREP} != "no")
61SUBDIR+= grep
62.endif
63
64.if (${MKPIGZGZIP} != "no")
65# nothing
66.else
67SUBDIR+= gzip
68.endif
69
70.if (${MKHESIOD} != "no")
71SUBDIR+= hesinfo
72.endif
73
74.if (${MKSKEY} != "no")
75SUBDIR+= skey skeyinfo skeyinit
76.endif
77
78.if (${MKYP} != "no")
79SUBDIR+= ypcat ypmatch ypwhich
80.endif
81
82.if (${MKCRYPTO} != "no")
83SUBDIR+= bdes
84SUBDIR+= nbsvtool
85.endif
86
87.include <bsd.subdir.mk>
88