roza/Makefile

14 lines
204 B
Makefile
Raw Normal View History

2023-08-30 18:06:26 +00:00
BUILD_DIR=build
.PHONY: $(BUILD_DIR) tests
build:
meson setup $(BUILD_DIR)
meson compile -C $(BUILD_DIR)
tests: $(BUILD_DIR)
./$(BUILD_DIR)/roza-tests
install: tests
meson install -C $(BUILD_DIR)