ferx/Makefile

20 lines
331 B
Makefile
Raw Normal View History

2024-04-11 13:37:03 +00:00
BUILD_DIR = build
RM += -r
all: debug
release:
cmake -S . -B $(BUILD_DIR) -G Ninja -DCMAKE_BUILD_TYPE=Release
cmake --build $(BUILD_DIR) -j8
debug:
cmake -S . -B $(BUILD_DIR) -G Ninja -DCMAKE_BUILD_TYPE=Debug
cmake --build $(BUILD_DIR) -j8
2024-04-11 13:37:03 +00:00
clean:
cmake --build $(BUILD_DIR) --target clean
clean-all:
$(RM) $(BUILD_DIR)