diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0ddaac3 --- /dev/null +++ b/Makefile | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | MAKEFLAGS+=-j3 | ||
| 2 | |||
| 3 | dev: watch server | ||
| 4 | |||
| 5 | webring: | ||
| 6 | ruby bin/webring.py | ||
| 7 | |||
| 8 | watch: | ||
| 9 | jekyll b --watch | ||
| 10 | |||
| 11 | server: | ||
| 12 | mkdir -p _site && cd _site && python3 -m http.server 6969 | ||
