18 lines
273 B
Makefile
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
|