This repository has been archived on 2021-04-22. You can view files and clone it, but cannot push or open issues/pull-requests.
stj/Makefile

47 lines
801 B
Makefile

SRC_DIR = src
RELEASE_DIR = build/release
DEBUG_DIR = build/debug
BINARY = stj
all: debug
.PHONY: all
clean:
@ rm -rf build
.PHONY: clean
# Release
run-release: release
@ ./$(RELEASE_DIR)/$(BINARY)
.PHONY: run-release
release: $(RELEASE_DIR)/Makefile
@ make -C $(RELEASE_DIR)
.PHONY: release
$(RELEASE_DIR)/Makefile: $(SRC_DIR)/CMakeLists.txt
@ cmake -H$(SRC_DIR) -B$(RELEASE_DIR) -DCMAKE_BUILD_TYPE=Release
clean-release:
@ rm -rf build/release
.PHONY: clean-release
# Debug
run-debug: debug
@ ./$(DEBUG_DIR)/$(BINARY)
.PHONY: run-debug
debug: $(DEBUG_DIR)/Makefile
@ make -C $(DEBUG_DIR)
.PHONY: debug
$(DEBUG_DIR)/Makefile: $(SRC_DIR)/CMakeLists.txt
@ cmake -H$(SRC_DIR) -B$(DEBUG_DIR) -DCMAKE_BUILD_TYPE=Debug
clean-debug:
@ rm -rf build/debug
.PHONY: clean-debug