MakeColors/Makefile
2020-12-30 23:09:21 +01:00

17 lines
301 B
Makefile

prefix ?= /usr/local
bindir = $(prefix)/bin
build:
swift build -c release --disable-sandbox
install: build
install -d "$(bindir)"
install ".build/release/MakeColors" "$(bindir)/make-colors"
uninstall:
rm -rf "$(bindir)/make-colors"
clean:
rm -rf .build
.PHONY: build install uninstall clean