diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,7 +1,8 @@ PROFILE ?= release BUILD_DIR ?= $(PROFILE) __build: - @[ -d $(BUILD_DIR) ] || meson setup --buildtype $(PROFILE) $(BUILD_DIR) - ninja -C $(BUILD_DIR) + mkdir -p $(BUILD_DIR) + P=`pwd` && cd $(BUILD_DIR) && cmake $$P + make -j16 -C $(BUILD_DIR) .PHONY: __build |