1 files changed, 13 insertions(+), 0 deletions(-)
A Makefile
A Makefile => Makefile +13 -0
@@ 0,0 1,13 @@
+.PHONY: build install uninstall clean
+
+build:
+ go build -o sourcehut-vanity .
+
+install: build
+ cp sourcehut-vanity /usr/bin
+
+uninstall:
+ rm /usr/bin/sourcehut-vanity
+
+clean:
+ rm sourcehut-vanity