X-Git-Url: http://nitlanguage.org diff --git a/contrib/inkscape_tools/Makefile b/contrib/inkscape_tools/Makefile index 834ad14..55cc9be 100644 --- a/contrib/inkscape_tools/Makefile +++ b/contrib/inkscape_tools/Makefile @@ -1,16 +1,14 @@ -all: bins tests - -bins: +all: mkdir -p bin - ../../bin/nitg --dir bin src/svg_to_png_and_nit.nit src/svg_to_icons.nit + ../../bin/nitc --dir bin src/svg_to_png_and_nit.nit src/svg_to_icons.nit -tests: test-dino test-app +check: test-tinks test-app test-app: bin/svg_to_png_and_nit make -C tests/app -test-dino: bin/svg_to_png_and_nit - mkdir -p tests/dino/images - bin/svg_to_png_and_nit --assets tests/dino/ --src tests/dino/ ../../examples/mnit_dino/art/drawing.svg +test-tinks: bin/svg_to_png_and_nit + mkdir -p tests/tinks/images + bin/svg_to_png_and_nit --assets tests/tinks/ --src tests/tinks/ ../tinks/art/drawing.svg .PHONY: bin/svg_to_png_and_nit