Add Makefile with install/uninstall targets

Automated-By: Claude Sonnet 4.6
This commit is contained in:
2026-05-28 22:17:48 -04:00
parent 630d69f02d
commit 3fa83858e4
+13
View File
@@ -0,0 +1,13 @@
PREFIX ?= $(HOME)/.local/bin
.PHONY: build install uninstall
build:
swift build -c release
install: build
install -d $(PREFIX)
install .build/release/CodeMapper $(PREFIX)/CodeMapper
uninstall:
rm -f $(PREFIX)/CodeMapper