diff options
author | xengineering <me@xengineering.eu> | 2024-10-23 17:56:35 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-10-23 17:56:35 +0200 |
commit | 649684b3b735f50ea33241286d231f977b8d0a89 (patch) | |
tree | c7d04f22a287b1f8a2ebc5de3110e3034cfe541a /Makefile | |
parent | 2195cfce131ee599c71d0c426a7eea70ed52345f (diff) | |
download | ceres-649684b3b735f50ea33241286d231f977b8d0a89.tar ceres-649684b3b735f50ea33241286d231f977b8d0a89.tar.zst ceres-649684b3b735f50ea33241286d231f977b8d0a89.zip |
Remove Makefile and update README.md accordingly
This drops the build dependency GNU Make. The resulting build steps are
typical for Go repositories and thus more familiar for Go developers.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 0d8853e..0000000 --- a/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -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 -race $(MODULE_NAME) -e - -.PHONY: tests -tests: - go test $(MODULE_NAME)/... - -.PHONY: clean -clean: - rm -rf $(BUILD_DIR) |