mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
9 lines
123 B
Makefile
9 lines
123 B
Makefile
|
all:
|
||
|
ifeq (,$(shell which ldoc))
|
||
|
$(error ldoc not found, please install via luarocks.)
|
||
|
endif
|
||
|
ldoc .
|
||
|
|
||
|
clean:
|
||
|
rm -rf html
|