xref: /freebsd/share/doc/Makefile (revision 952d112864d8008aa87278a30a539d888a8493cd)
1#	From: @(#)Makefile	8.1 (Berkeley) 6/5/93
2#	$Id$
3
4SUBDIR=	FAQ handbook psd smm usd papers
5
6# List of all language-specific subdirs.
7LANGSUBDIR=	ja_JP.EUC
8
9# If ALLLANG is defined, descend to all language-specific subdirs too.
10# If ALLLANG is not defined, but LANG is defined and a subdirectory with
11# that name exists, descend to that directory too.
12# In either case, the default subdirectories are always traversed.
13
14.if defined(ALLLANG)
15SUBDIR+=	${LANGSUBDIR}
16.elif defined(LANG)
17.if exists(${.CURDIR}/${LANG})
18SUBDIR+=	${LANG}
19.endif
20.endif
21
22# Default output formats are ascii for troff documents, and
23# ascii and html for sgml documents.
24# To specify generate postscript versions of troff documents, use:
25#  make PRINTER=ps
26
27.include <bsd.subdir.mk>
28