From dd6870ba93242d528cff2c4019934ddb8782c9db Mon Sep 17 00:00:00 2001 From: xengineering Date: Tue, 30 Apr 2024 20:24:27 +0200 Subject: Add Makefile Using a build system like Make allows to execute more complex builds while the user interface is still simple. The Makefile added by this commit is just a basic starting point. --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2ae2e86 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +TARGET_EXEC := ceres +BUILD_DIR := ./build +MODULE_NAME := xengineering.eu/ceres + +all: $(BUILD_DIR)/$(TARGET_EXEC) + +$(BUILD_DIR)/$(TARGET_EXEC): + go build -o $@ $(MODULE_NAME) + +.PHONY: debug +debug: + go run $(MODULE_NAME) + +.PHONY: clean +clean: + rm -rf $(BUILD_DIR) -- cgit v1.2.3-70-g09d2