BUILD_DIR := build

.PHONY: all configure build clean

all: build

configure:
	@cmake -S . -B $(BUILD_DIR)

build: configure
	@cmake --build $(BUILD_DIR) -- -j$$(nproc)

clean:
	@rm -rf $(BUILD_DIR)
