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