From 52b37a1054707f9c9815f467630776419c810107 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Thu, 26 May 2016 20:33:56 +0200 Subject: makefile repariert, Berechtigungen setzen --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f40f591..0a6540b 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,7 @@ all: sound-cutter sound-cutter.1 %: %.in sed "s/#VERSION#/$(VERSION)/; s@#BINDIR#@$(BINDIR)@" $< > $@ + [ "$@" = "sound-cutter" ] && chmod +x "$@" || true .PHONY: install dist clean @@ -37,7 +38,7 @@ install: all install -D -m0644 sound-cutter.1 $(DESTDIR)$(MANDIR)/man1/sound-cutter.1 clean: - rm -f sound-cutter{,.1} + rm -f sound-cutter sound-cutter.1 dist: clean git status --porcelain 2> /dev/null | grep -q "\S" && (git add .; git commit -m"neue Version: $(VERSION)") || true -- cgit v1.2.3-54-g00ecf