mirror of https://github.com/GNOME/gimp.git
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:
parent
7ee72ee9f7
commit
b61dd873d5
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue