website-mdbook/Makefile
2024-12-28 21:34:11 -07:00

9 lines
No EOL
112 B
Makefile

# bivouac
build:
mdbook build
publish: build
./publish.sh
default: publish
clean:
rm -rf book
.PHONY: publish