Skip to content

Commit

Permalink
Merge pull request #76 from TakayukiMatsuo/ja
Browse files Browse the repository at this point in the history
Add Japanese support for wolfMQTT
  • Loading branch information
kojo1 authored Jan 30, 2023
2 parents 27f312c + 5c32b7b commit 5bc1364
Show file tree
Hide file tree
Showing 11 changed files with 5,530 additions and 2 deletions.
2,630 changes: 2,630 additions & 0 deletions wolfMQTT/Doxyfile-ja

Large diffs are not rendered by default.

11 changes: 9 additions & 2 deletions wolfMQTT/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@ SOURCES = chapter01.md \
chapter04.md \
chapter05.md

PDF = wolfMQTT-Manual.pdf

ifeq ($(DOC_LANG),JA)
DOXY = Doxyfile-ja
PDF = wolfMQTT-Manual-jp.pdf
else
DOXY = Doxyfile
PDF = wolfMQTT-Manual.pdf
endif

wolfmqtt:
@git clone --depth 1 https://github.com/wolfSSL/wolfmqtt
Expand All @@ -22,7 +29,7 @@ wolfmqtt-update: wolfmqtt
.PHONY: api
api: wolfmqtt-update
@mkdir -p api/md
@doxygen
@doxygen $(DOXY)
@PATH=${DOXYBOOK_PATH}:${PATH} doxybook2 --input wolfmqtt/wolfmqtt/xml --output api/md --config doxybook.cfg

# Need an index.md, so let's make it chapter01.
Expand Down
650 changes: 650 additions & 0 deletions wolfMQTT/header-ja/mqtt_client.h

Large diffs are not rendered by default.

Loading

0 comments on commit 5bc1364

Please sign in to comment.