Switch default Makefile rule from run to build

This commit makes it so that running `make` without arguments builds
rather than builds and runs, which is unconventional and surprising
behaviour.
This commit is contained in:
Tudor Brindus 2020-03-14 16:25:33 -04:00 committed by GitHub
parent 4471d4aba1
commit 5e712ca255
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
.PHONY: build build-debug run clean default install .PHONY: build build-debug run clean default install
default: run default: build
build: build:
meson build meson build