From: Bastian Dehn Date: Mon, 11 Jul 2016 20:05:14 +0000 (+0200) Subject: add: Makefile X-Git-Tag: v1.0.0^2~134 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=3935f49a7f1d0b05369471965a05fff327d2920b;p=albentohandy.git add: Makefile --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bfd8c61 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ + +BINPATH=/usr/bin + +install: + cp albentohandy.sh $(BINPATH)/albentohandy.sh + chmod 755 $(BINPATH)/albentohandy.sh + cp flactomp3v2.sh $(BINPATH)/flactomp3v2.sh + chmod 755 $(BINPATH)/flactomp3v2.sh +uninstall: + rm $(BINPATH)/albentohandy.sh + rm $(BINPATH)/flactomp3v2.sh