diff options
Diffstat (limited to 'data/makefile')
-rw-r--r-- | data/makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/data/makefile b/data/makefile index a13f9095..7b954476 100644 --- a/data/makefile +++ b/data/makefile @@ -13,7 +13,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. # -SETS = default none +SETS = default none anticurry all: $(patsubst %,recipes/%.yaml,$(SETS)) graphs: recipes/default.svg @@ -21,11 +21,13 @@ JSR = deno run recipes/none.yaml: echo > $@ +recipes/anticurry.yaml: recipes/default.yaml + recipes/anticurry.sed <$<>$@ recipes/default.yaml: recipes/default.js DENO_NO_UPDATE_CHECK=1 $(JSR) $< > $@ recipes/%.gv.txt: recipes/%.yaml - { cd .. && cargo +nightly run --release --bin graph $(patsubst recipes/%.yaml,%,$<); } > $@ + { cd .. && cargo run --release --bin graph $(patsubst recipes/%.yaml,%,$<); } > $@ recipes/%.svg: recipes/%.gv.txt dot -Tsvg -Kdot >$@<$< |