From f54922269049658bdd53adadd1055e15fd490fba Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Fri, 26 Mar 2021 12:58:56 +0100 Subject: Initial commit --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..69868ce --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +all: + echo "Usage: make install" + +install: uninstall + chmod +x *sh + find `pwd` -type f -name "*.sh" -exec ln -s {} ~/bin/acme/ ';' + find ~/bin/acme/ -type l -name "*.sh" -exec renamex -s/.sh// '{}' \; + +uninstall: + rm -f ~/bin/acme/* -- cgit v1.2.3