diff --git a/live/Makefile b/live/Makefile new file mode 100644 index 00000000..f6094e12 --- /dev/null +++ b/live/Makefile @@ -0,0 +1,8 @@ +INSTALL_PATH = /usr/local/bin/hublive + +install: + swift build -c release -Xswiftc -static-stdlib + cp -f .build/release/hublive $(INSTALL_PATH) + +uninstall: + rm -f $(INSTALL_PATH)