summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorfbarriere <fbarriere>2003-03-12 20:10:26 +0000
committerfbarriere <fbarriere>2003-03-12 20:10:26 +0000
commitb14816bd54a62710eadf3577300414f4178b9ec3 (patch)
tree4ade29e1a52145b5d5c384b776361e4be4f62a61 /Makefile
parent87a49ff768190f6c42ec2319f4f1f493e43e9ac6 (diff)
downloadsylpheeddoc-doc-b14816bd54a62710eadf3577300414f4178b9ec3.tar.gz
sylpheeddoc-doc-b14816bd54a62710eadf3577300414f4178b9ec3.tar.xz
sylpheeddoc-doc-b14816bd54a62710eadf3577300414f4178b9ec3.zip
Added the use of the zh-sgmltools for the chinese doc.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 13 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index eace1b5..f1bfc11 100644
--- a/Makefile
+++ b/Makefile
@@ -37,6 +37,9 @@
######################################################################
#
# $Log: Makefile,v $
+# Revision 1.4 2003/03/12 20:10:26 fbarriere
+# Added the use of the zh-sgmltools for the chinese doc.
+#
# Revision 1.3 2002/08/27 19:35:36 fbarriere
# Changed FILTER_IMAGE, added the TARGET_TYPE switch, added packages generation part.
#
@@ -50,9 +53,15 @@
#
######################################################################
-SGML_TOOL := /usr/bin/sgml2html
-SGML_TOOL_OPT := --language=$(LANG1)
-#SGML_TOOL_OPT := --imagebuttons
+ifeq ($(LANG1), zh_TW.Big5)
+ SGML_TOOL := /usr/local/bin/bg5sgml2html
+ SGML_TOOL_OPT :=
+ #SGML_TOOL_OPT := --imagebuttons
+else
+ SGML_TOOL := /usr/bin/sgml2html
+ SGML_TOOL_OPT := --language=$(LANG1)
+ #SGML_TOOL_OPT := --imagebuttons
+endif
#
# Final result type: WEB (with images and original names),
@@ -260,7 +269,7 @@ all_package:
package:
@ echo "######### Building package"
- @ $(TAR_CREATE) $(PACKAGE_DIR)/$(DOC_TYPE)_$(LANG1)_$(TODAY).$(TAR_SUFFIX) -C $(HERE) .
+ @ $(TAR_CREATE) $(PACKAGE_DIR)/sylpheeddoc_$(DOC_TYPE)_$(LANG1)_$(TODAY).$(TAR_SUFFIX) -C $(HERE) .
# ####################################################