diff options
| author | metamuffin <metamuffin@disroot.org> | 2024-10-14 13:42:53 +0200 | 
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2024-10-14 13:42:53 +0200 | 
| commit | bb9fd6b36d39bc5fe6f162f2df887bba3d036095 (patch) | |
| tree | 6b9a6894175f7233b28c66e9dcff7d476b9f2def /data/makefile | |
| parent | 09ffe69be75185fce1e18595f1f38a4ce1f30132 (diff) | |
| download | hurrycurry-bb9fd6b36d39bc5fe6f162f2df887bba3d036095.tar hurrycurry-bb9fd6b36d39bc5fe6f162f2df887bba3d036095.tar.bz2 hurrycurry-bb9fd6b36d39bc5fe6f162f2df887bba3d036095.tar.zst  | |
fix parallel compilation problems
Diffstat (limited to 'data/makefile')
| -rw-r--r-- | data/makefile | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/data/makefile b/data/makefile index a5041803..fe4ab583 100644 --- a/data/makefile +++ b/data/makefile @@ -20,8 +20,12 @@ graphs: recipes/default.svg  JSR = deno run +../book/book.json: ../book/book.js +	make -C ../book book.json +  book.json: ../book/book.json  	cp $< $@ +  recipes/none.yaml:  	echo > $@  recipes/anticurry.yaml: recipes/default.yaml  |