add manpage
This commit is contained in:
parent
d072368de0
commit
e7214b60fa
2 changed files with 26 additions and 0 deletions
4
Makefile
4
Makefile
|
|
@ -1,4 +1,5 @@
|
|||
PREFIX ?= /usr/local
|
||||
MANPREFIX ?= $(PREFIX)/share/man
|
||||
CC ?= cc
|
||||
|
||||
output: someblocks.c blocks.def.h blocks.h
|
||||
|
|
@ -12,5 +13,8 @@ clean:
|
|||
install: output
|
||||
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
||||
install -m 0755 someblocks $(DESTDIR)$(PREFIX)/bin/someblocks
|
||||
mkdir -p $(DESTDIR)$(MANPREFIX)/man1
|
||||
install -m 0644 someblocks.1 $(DESTDIR)$(MANPREFIX)/man1/someblocks.1
|
||||
uninstall:
|
||||
rm -f $(DESTDIR)$(PREFIX)/bin/someblocks
|
||||
rm -f $(DESTDIR)$(MANPREFIX)/man1/someblocks.1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue