StupidOS/Makefile

14 lines
287 B
Makefile
Raw Normal View History

2023-01-15 19:25:25 +00:00
.DEFAULT_GOAL := all
TOPDIR := $(CURDIR)
export TOPDIR
2020-05-06 10:40:10 +00:00
SUBDIR := thirdparty lib bin kernel
2020-05-06 10:40:10 +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
include $(TOPDIR)/share/mk/stupid.subdir.mk