turings-tarpit/Makefile
2024-09-07 22:26:57 -04:00

18 lines
273 B
Makefile

all: build test
build:
meson compile -j 4 -C builddir
test:
meson test -C builddir --suite turings_tarpit
install: build test
powershell "cp builddir/escape_turings_tarpit.exe ."
run: install
./escape_turings_tarpit.exe
clean:
meson compile --clean -C builddir