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 shlock \ 27 shuffle sort split stat su \ 28 tee tic touch tput \ 29 tr true tsort tty ul uname unexpand unifdef \ 30 uniq units unvis unzip users \ 31 uuidgen vis \ 32 \ 33 wall wc what who whois \ 34 write xargs xinstall xstr yes 35 36.if !defined(__MINIX) 37SUBDIR+= ../external/zlib/pigz/bin/pigz 38.else 39 40# Non-NetBSD imports 41SUBDIR+= ministat 42 43# Minix commands 44SUBDIR+= top 45SUBDIR+= toproto 46 47# LSC FIXME For now we compile those unconditionnaly 48SUBDIR+= apropos whatis bdes soelim 49.endif # defined(__MINIX) 50 51.if (${MKGROFF} == "no") 52SUBDIR+= soelim 53.endif 54 55.if (${MKMAKEMANDB} == "no") 56SUBDIR+= apropos whatis 57.endif 58 59.if (${MKRUMP} != "no") 60SUBDIR+= rump_allserver rump_dhcpclient rump_halt rump_server 61.endif 62 63.if (${MKBSDGREP} != "no") 64SUBDIR+= grep 65.endif 66 67.if (${MKPIGZGZIP} != "no") 68# nothing 69.else 70SUBDIR+= gzip 71.endif 72 73.if (${MKHESIOD} != "no") 74SUBDIR+= hesinfo 75.endif 76 77.if (${MKSKEY} != "no") 78SUBDIR+= skey skeyinfo skeyinit 79.endif 80 81.if (${MKYP} != "no") 82SUBDIR+= ypcat ypmatch ypwhich 83.endif 84 85.if (${MKCRYPTO} != "no") 86SUBDIR+= bdes 87SUBDIR+= nbsvtool 88.endif 89 90.include <bsd.subdir.mk> 91