aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 0cf86076f251c0e1b012b9f79643bbc596e74031 (plain)
1
2
3
4
5
6
7
8
9
10
11
MESON	:= $(shell which meson 2>/dev/null)
NINJA	:= $(shell which ninja-build 2>/dev/null || which ninja 2>/dev/null)
HOST	:= $(shell hostname -s)
BDIR	:= build-meson-$(HOST)

build: $(BDIR)/build.ninja
	$(NINJA) -C $(BDIR)

$(BDIR)/build.ninja:
	$(MESON) $(BDIR)