diff options
author | David Timber <dxdt@dev.snart.me> | 2024-11-18 12:06:39 +0100 |
---|---|---|
committer | David Timber <dxdt@dev.snart.me> | 2024-11-18 12:08:34 +0100 |
commit | bf177669206eb56dd2b4de2d104d9fcfd0bb4215 (patch) | |
tree | f62bc9ce549e3a1ba4838a35d769dbbaeb40154a /writeups/cgit/Makefile | |
parent | e2989c9926c5fc83af7e71c84ff1c7e833f933e8 (diff) |
Add writeups/cgit
Diffstat (limited to 'writeups/cgit/Makefile')
-rw-r--r-- | writeups/cgit/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/writeups/cgit/Makefile b/writeups/cgit/Makefile new file mode 100644 index 0000000..e76ebd2 --- /dev/null +++ b/writeups/cgit/Makefile @@ -0,0 +1,22 @@ +BASE_URL ?= http://git.kernel.org/cgit-data +OBJ = \ + cgit.css \ + source-code-pro/source-code-pro.css \ + source-code-pro/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 \ + source-code-pro/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 \ + source-code-pro/OTF/SourceCodePro-Regular.otf.woff \ + source-code-pro/OTF/SourceCodePro-Bold.otf.woff \ + source-code-pro/OTF/SourceCodePro-Regular.otf \ + source-code-pro/OTF/SourceCodePro-Bold.otf \ + source-code-pro/TTF/SourceCodePro-Regular.ttf \ + source-code-pro/TTF/SourceCodePro-Bold.ttf + +all: ${OBJ} + +clean: + rm -f cgit.css + rm -rf source-code-pro + +${OBJ}: + mkdir -p $(dir $@) + curl -sSL ${BASE_URL}/$@ -o $@ |