b4346b9b2d
- Reflect the rename in referencing files Approved by: doceng (implicit)
46 lines
1.3 KiB
Makefile
46 lines
1.3 KiB
Makefile
# $FreeBSD$
|
|
# The FreeBSD Japanese Documentation Project
|
|
# Original revision: 1.18
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
|
|
DOCS= commercial.xml
|
|
INDEXLINK= commercial.html
|
|
|
|
XSLT.DEFAULT= ${XSL_ENTRIES}
|
|
DEPENDSET.DEFAULT= commercial
|
|
|
|
XMLDOCS= consult::${XML_COMMERCIAL_CONSULT}:
|
|
PARAMS.consult= --param pagename "'Consulting Services'" \
|
|
--param basename "'consult.html'"
|
|
|
|
XMLDOCS+= consult_bycat::${XML_COMMERCIAL_CONSULT}:
|
|
PARAMS.consult_bycat=\
|
|
--param pagename "'Consulting Services'" \
|
|
--param basename "'consult.html'" \
|
|
--param sort "'bycat'"
|
|
|
|
XMLDOCS+= hardware::${XML_COMMERCIAL_HARDWARE}:
|
|
PARAMS.hardware= --param pagename "'Hardware Vendors'"
|
|
|
|
XMLDOCS+= isp::${XML_COMMERCIAL_ISP}:
|
|
PARAMS.isp= --param pagename "'Internet Service Providers'"
|
|
|
|
XMLDOCS+= misc::${XML_COMMERCIAL_MISC}:
|
|
PARAMS.misc= --param pagename "'Miscellaneous Vendors'"
|
|
|
|
XMLDOCS+= software::${XML_COMMERCIAL_SOFTWARE}:
|
|
PARAMS.software=--param pagename "'Software Vendors'"
|
|
|
|
XMLDOCS+= software_bycat::${XML_COMMERCIAL_SOFTWARE}:
|
|
PARAMS.software_bycat=\
|
|
--param pagename "'Software Vendors'" \
|
|
--param basename "'software.html'" \
|
|
--param sort "'bycat'"
|
|
|
|
.include "${DOC_PREFIX}/share/mk/web.site.mk"
|