105672198SGarrett Wollman# From: @(#)Makefile 8.1 (Berkeley) 6/5/93 241664fc8SSatoshi Asami# $Id: Makefile,v 1.9 1996/09/08 21:24:15 jfieber Exp $ 3afe61c15SRodney W. Grimes 4a136fdc0SJohn FieberSUBDIR= FAQ handbook psd smm usd papers 5afe61c15SRodney W. Grimes 641664fc8SSatoshi Asami# List of all language-specific subdirs. 741664fc8SSatoshi AsamiLANGSUBDIR= ja_JP.EUC 841664fc8SSatoshi Asami 941664fc8SSatoshi Asami# If ALLLANG is defined, descend to all language-specific subdirs too. 1041664fc8SSatoshi Asami# If ALLLANG is not defined, but LANG is defined and a subdirectory with 1141664fc8SSatoshi Asami# that name exists, descend to that directory too. 1241664fc8SSatoshi Asami# In either case, the default subdirectories are always traversed. 1341664fc8SSatoshi Asami 1441664fc8SSatoshi Asami.if defined(ALLLANG) 1541664fc8SSatoshi AsamiSUBDIR+= ${LANGSUBDIR} 1641664fc8SSatoshi Asami.elif defined(LANG) 1741664fc8SSatoshi Asami.if exists(${.CURDIR}/${LANG}) 1841664fc8SSatoshi AsamiSUBDIR+= ${LANG} 1941664fc8SSatoshi Asami.endif 2041664fc8SSatoshi Asami.endif 2141664fc8SSatoshi Asami 2251ae8159SJohn Fieber# Default output formats are ascii for troff documents, and 2351ae8159SJohn Fieber# ascii and html for sgml documents. 2451ae8159SJohn Fieber# To specify generate postscript versions of troff documents, use: 2551ae8159SJohn Fieber# make PRINTER=ps 2651ae8159SJohn Fieber 27afe61c15SRodney W. Grimes.include <bsd.subdir.mk> 28