meson.make: Don't use backend-specific calls

There's always a possibility that someone wants to use meson with
something else than `ninja` (in theory, since this is the only supported
backend atm). It also means less commands to remember for newcomers.
This commit is contained in:
Niels De Graef 2021-09-30 16:13:35 +02:00
parent 7ee72ee9f7
commit b61dd873d5
1 changed files with 2 additions and 2 deletions

View File

@ -16,12 +16,12 @@ _build:
.PHONY: build
build: | _build
ninja -C _build
meson compile -C _build
.PHONY: install
install:
ninja -C _build install
meson install -C _build
.PHONY: clean