ferx/Makefile

11 lines
122 B
Makefile
Raw Normal View History

2024-04-11 13:37:03 +00:00
BUILD_DIR = build
all: build
build:
cmake -S ./ -B $(BUILD_DIR)
cd $(BUILD_DIR) && make
clean:
rm -rf $(BUILD_DIR)