1# From: @(#)Makefile 8.1 (Berkeley) 6/10/93 2 3.include <src.opts.mk> 4 5# The following modules do not describe FreeBSD: 6# 14.uucpimpl, 15.uucpnet 7 8# The following modules do not build/install: 9# 13.amd (documentation is TeXinfo) 10# 16.security 17.password (encumbered) 11 12SUBDIR= title \ 13 contents \ 14 01.setup \ 15 02.config \ 16 03.fsck \ 17 04.quotas \ 18 05.fastfs \ 19 06.nfs \ 20 ${_07.lpd} \ 21 ${_08.sendmailop} \ 22 11.timedop \ 23 12.timed \ 24 18.net 25 26.if ${MK_SENDMAIL} != "no" 27_08.sendmailop= 08.sendmailop 28.endif 29 30.if ${MK_LPR} != "no" 31_07.lpd= 07.lpd 32.endif 33 34SUBDIR_PARALLEL= 35 36.include <bsd.subdir.mk> 37