summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-04-30 20:24:27 +0200
committerxengineering <me@xengineering.eu>2024-04-30 20:47:09 +0200
commitdd6870ba93242d528cff2c4019934ddb8782c9db (patch)
tree8ecb32adc35068ca2f7b877478d94786d6ba41dc /Makefile
parent44d48f1be655abe495cb2151139b37a40ac265a9 (diff)
downloadceres-dd6870ba93242d528cff2c4019934ddb8782c9db.tar
ceres-dd6870ba93242d528cff2c4019934ddb8782c9db.tar.zst
ceres-dd6870ba93242d528cff2c4019934ddb8782c9db.zip
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.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 16 insertions, 0 deletions
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)