diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2023-11-02 01:02:13 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2023-11-02 01:02:13 +0100 |
| commit | ff2549ae91387396be98b5af255c43608f257fe1 (patch) | |
| tree | 656a1fa630b4c3fba131e95582dc173b534cd63e /Makefile | |
| parent | 18ac0f78a266d374e5b9051689291c79200b6090 (diff) | |
| download | mitjafelicijan.com-ff2549ae91387396be98b5af255c43608f257fe1.tar.gz | |
Added basic makefile
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 | ||
