commit f0a2204f11cf14761c0653637fcf147f8496f790 parent 72e02acefda512ae1483cc852b19a8e9bb5456e2 Author: gearsix <gearsix@tuta.io> Date: Thu, 6 May 2021 11:53:25 +0100 added Makefile Diffstat:
A | Makefile | | | 16 | ++++++++++++++++ |
1 file changed, 16 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile @@ -0,0 +1,16 @@ +CURRDIR=$(shell pwd) +DESTBINDIR=/usr/local/bin +NAME=sya + +all: none + +none: + @echo 'nothing to do, just run "make install", or "make uninstall"' + +install: + install -pDm755 ${CURRDIR}/${NAME}.py ${DESTBINDIR}/${NAME} + +uninstall: + rm -i ${DESTBINDIR}/${NAME} + +.PHONY: all none install link uninstall