2023-01-15 19:25:25 +00:00
|
|
|
.DEFAULT_GOAL := all
|
2023-06-29 04:09:31 +00:00
|
|
|
TOPDIR := $(CURDIR)
|
|
|
|
export TOPDIR
|
2020-05-06 10:40:10 +00:00
|
|
|
|
2023-06-29 04:09:31 +00:00
|
|
|
SUBDIR := thirdparty lib bin kernel
|
2020-05-06 10:40:10 +00:00
|
|
|
|
2023-06-29 04:09:31 +00:00
|
|
|
.PHONY: docs
|
|
|
|
docs:
|
|
|
|
-mkdir -p docs/html
|
|
|
|
naturaldocs -p docs/config -img docs/img -xi tmp -i . -o HTML docs/html
|
|
|
|
cp docs/img/favicon.ico docs/html/
|
2020-05-06 10:40:10 +00:00
|
|
|
|
2023-06-29 04:09:31 +00:00
|
|
|
include $(TOPDIR)/share/mk/stupid.subdir.mk
|