summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 14c27fe..5fa6edb 100644
--- a/Makefile
+++ b/Makefile
@@ -25,7 +25,7 @@ MANDIR = /usr/share/man
VERSION = 1.0.2
-all: sound-cutter sound-cutter.8
+all: sound-cutter sound-cutter.1
%: %.in
sed "s/#VERSION#/$(VERSION)/; s@#BINDIR#@$(BINDIR)@" $< > $@
@@ -34,10 +34,10 @@ all: sound-cutter sound-cutter.8
install: all
install -D -m0755 sound-cutter $(DESTDIR)$(BINDIR)/sound-cutter
- install -D -m0644 sound-cutter.8 $(DESTDIR)$(MANDIR)/man8/sound-cutter.8
+ install -D -m0644 sound-cutter.1 $(DESTDIR)$(MANDIR)/man1/sound-cutter.1
clean:
- rm -f sound-cutter{,.8}
+ rm -f sound-cutter{,.1}
dist: clean
git status --porcelain 2> /dev/null | grep -q "\S" && (git add .; git commit -m"neue Version: $(VERSION)") || true