diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-30 19:45:31 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-30 19:45:31 +0200 |
commit | 8be7ee877f8b34979a5fc43ba9040a058422a356 (patch) | |
tree | 6b7a070500b6905cdbf2b4d9bb9846d36efbbae6 /data/makefile | |
parent | f717628e0cabd980a92df926c35e162df0f8ad2d (diff) | |
download | hurrycurry-8be7ee877f8b34979a5fc43ba9040a058422a356.tar hurrycurry-8be7ee877f8b34979a5fc43ba9040a058422a356.tar.bz2 hurrycurry-8be7ee877f8b34979a5fc43ba9040a058422a356.tar.zst |
remove +nightly cargo rustup flag
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 >$@<$< |