Skip to content

Commit 5bc1364

Browse files
authored
Merge pull request #76 from TakayukiMatsuo/ja
Add Japanese support for wolfMQTT
2 parents 27f312c + 5c32b7b commit 5bc1364

File tree

11 files changed

+5530
-2
lines changed

11 files changed

+5530
-2
lines changed

wolfMQTT/Doxyfile-ja

Lines changed: 2630 additions & 0 deletions
Large diffs are not rendered by default.

wolfMQTT/Makefile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,14 @@ SOURCES = chapter01.md \
99
chapter04.md \
1010
chapter05.md
1111

12-
PDF = wolfMQTT-Manual.pdf
12+
13+
ifeq ($(DOC_LANG),JA)
14+
DOXY = Doxyfile-ja
15+
PDF = wolfMQTT-Manual-jp.pdf
16+
else
17+
DOXY = Doxyfile
18+
PDF = wolfMQTT-Manual.pdf
19+
endif
1320

1421
wolfmqtt:
1522
@git clone --depth 1 https://github.com/wolfSSL/wolfmqtt
@@ -22,7 +29,7 @@ wolfmqtt-update: wolfmqtt
2229
.PHONY: api
2330
api: wolfmqtt-update
2431
@mkdir -p api/md
25-
@doxygen
32+
@doxygen $(DOXY)
2633
@PATH=${DOXYBOOK_PATH}:${PATH} doxybook2 --input wolfmqtt/wolfmqtt/xml --output api/md --config doxybook.cfg
2734

2835
# Need an index.md, so let's make it chapter01.

wolfMQTT/header-ja/mqtt_client.h

Lines changed: 650 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)