diff options
author | Erich Eckner <git@eckner.net> | 2016-05-24 09:03:22 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2016-05-24 09:03:22 +0200 |
commit | 5a1f48a0e93e26b72963eaeceb199719dcea2161 (patch) | |
tree | 7f9c0e1366986789d457943bf7760e667896f8a6 /Makefile | |
parent | 7505c5c3045a00013efa3e11d0d61028fb7a526a (diff) | |
download | shutdownasap-5a1f48a0e93e26b72963eaeceb199719dcea2161.tar.xz |
manpage .1 -> .8
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -26,7 +26,7 @@ MANDIR = /usr/share/man VERSION = 0.3 -all: shutdownasap shutdownasap.conf shutdownasap.8 +all: shutdownasap shutdownasap.conf shutdownasap.1 %: %.in sed "s/#VERSION#/$(VERSION)/; s@#BINDIR#@$(BINDIR)@; s@#ETCDIR#@$(ETCDIR)@" $< > $@ @@ -35,11 +35,11 @@ all: shutdownasap shutdownasap.conf shutdownasap.8 install: all install -D -m0755 -t $(DESTDIR)$(BINDIR) shutdownasap - install -D -m0644 -t $(DESTDIR)$(MANDIR)/man8 shutdownasap.8 + install -D -m0644 -t $(DESTDIR)$(MANDIR)/man1 shutdownasap.1 install -D -m0644 -t $(DESTDIR)$(ETCDIR) shutdownasap.conf clean: - rm -f shutdownasap{,.8,.conf} + rm -f shutdownasap{,.1,.conf} dist: clean git status --porcelain 2> /dev/null | grep -q "\S" && (git add .; git commit -m"neue Version: $(VERSION)") || true |