diff options
| author | Benjamin Culkin <bjculkin@sitri.goetia> | 2023-10-26 00:13:49 +0000 |
|---|---|---|
| committer | Benjamin Culkin <bjculkin@sitri.goetia> | 2023-10-26 00:13:49 +0000 |
| commit | 1148df40528741b1e18ea0a64a6a6d5f2cb96bd2 (patch) | |
| tree | 33ab746b2c51166ac6113bb3b4ac6b6dc41db783 /Makefile | |
Initial commit
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ecee8e4 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.PHONY: site clean + +site: index.ms entries/intro.ms + mkdir -p target/ + mkdir -p target/entries + groff -Thtml -ms index.ms > target/index.html + groff -Thtml -ms entries/intro.ms > target/entries/intro.html + +clean: + rm -rf target/ |
