This commit is contained in:
dtb 2022-11-14 13:53:54 -05:00
parent 1e93814f9f
commit b5b59c3698

6
wiki/Makefile Normal file
View File

@ -0,0 +1,6 @@
all: unix/index.html
unix/index.html: unix/*
$(MAKE) -C unix
clean:
$(MAKE) -C unix clean
.PHONY: all clean