This commit is contained in:
Robert Jelic
2025-02-09 19:09:41 +01:00
parent 77fe21e759
commit c9b39207e7
2 changed files with 9 additions and 17 deletions

View File

@@ -49,20 +49,10 @@ test-tables:
test-clean: clean-basic clean-example clean-md clean-tables test-clean: clean-basic clean-example clean-md clean-tables
.PHONY: doc-site clean
doc-site: doc-site:
mkdir -p out ldoc .
ldoc -c config.ld src
CLEAN=&& lua $(_REPODIR)/ldoc.lua . && rd /S /Q cdocs && cp -rf doc cdocs clean:
rm -rf out
clean-basic:
cd tests $(CLEAN)
clean-example:
cd tests && cd example $(CLEAN)
clean-md:
cd tests && cd md-test $(CLEAN)
clean-tables:
cd tests && cd simple $(CLEAN)

View File

@@ -1,7 +1,9 @@
project = 'Basalt2' project = 'Basalt2'
title = 'Basalt Documentation' title = 'Basalt Documentation'
description = 'A UI Framework for ComputerCraft' description = 'A UI Framework for ComputerCraft'
file = {'src'} file = 'src' -- Einzelner String statt Table
dir = 'out' dir = 'out' -- Ausgabeverzeichnis
one = true -- Eine Datei pro Modul
format = 'markdown' format = 'markdown'
ext = '.md' -- Explizite Dateierweiterung
all = true all = true