diff options
author | metamuffin <metamuffin@disroot.org> | 2022-09-26 14:14:58 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-09-26 14:14:58 +0200 |
commit | 15d78464ba9a717a71e1dc47a4101c8b13ec6581 (patch) | |
tree | 43def89ffd6e9c2ff80e7f7eeecec6fcf18c4e92 /code/makefile | |
parent | 0a18eae178a23e7f7bfd88c37502e5e8c1fdf64a (diff) | |
download | metamuffin-blog-15d78464ba9a717a71e1dc47a4101c8b13ec6581.tar metamuffin-blog-15d78464ba9a717a71e1dc47a4101c8b13ec6581.tar.bz2 metamuffin-blog-15d78464ba9a717a71e1dc47a4101c8b13ec6581.tar.zst |
syntax highlighting with syntect
Diffstat (limited to 'code/makefile')
-rw-r--r-- | code/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/makefile b/code/makefile index 45f1de5..1a943b0 100644 --- a/code/makefile +++ b/code/makefile @@ -19,7 +19,7 @@ out/feed.atom: $(TOOL) $(SRC_ARTICLES) out/%: articles/%.md $(TOOL) out/style.css $(TOOLC) render-article $< > $@ -$(TOOL): $(shell find ../code/src -type f) +$(TOOL): $(shell find ../code/src -type f) $(shell find ../code/grammar -type f) sh -c 'cd ../code; cargo build' clean: |