1
0
Fork 0
mirror of https://github.com/ctruLua/ctruLua.git synced 2025-10-27 16:39:29 +00:00

Fully documented ctr and ctr.gfx in the C source

The documentation can be built using LDoc : run make build-doc

However, there's still a bunch of things to document.
This commit is contained in:
Reuh 2015-09-12 13:35:21 +02:00
parent 9d8c499afc
commit 0773992b68
8 changed files with 253 additions and 15 deletions

View file

@ -158,6 +158,9 @@ build-all:
@echo Building ctruLua...
@make build
build-doc:
@cd doc/ && ldoc . && cd ..
#---------------------------------------------------------------------------------
clean:
@rm -fr $(BUILD) $(TARGET).3dsx $(OUTPUT).smdh $(TARGET).elf
@ -186,6 +189,9 @@ clean-all:
@echo Cleaning ctruLua...
@make clean
clean-doc:
@rm -rf doc/html
#---------------------------------------------------------------------------------
else