1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93 2# $FreeBSD$ 3 4.include <src.opts.mk> 5 6SUBDIR= ${_IPv6} \ 7 ${_atf} \ 8 legal \ 9 ${_llvm} \ 10 ${_pjdfstest} \ 11 ${_roffdocs} 12 13.if ${MK_TESTS} != "no" 14_atf= atf 15_pjdfstest= pjdfstest 16.endif 17 18.if ${MK_CLANG} != "no" 19_llvm= llvm 20.endif 21 22.if ${MK_INET6} != "no" 23_IPv6= IPv6 24.endif 25 26# FIXME this is not a real solution ... 27.if ${MK_GROFF} != "no" 28_roffdocs= papers psd smm usd 29.endif 30 31# Default output format for troff documents is ascii. 32# To generate postscript versions of troff documents, use: 33# make PRINTERDEVICE=ps 34 35.include <bsd.subdir.mk> 36