Fixed Issue #4 - Added man page to makefile for installation.

This commit is contained in:
Bruno Braga 2013-05-19 22:16:34 +10:00
parent fafee89cb0
commit e7b8fad423
1 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,7 @@
CFLAGS?=-Wall -Os
PREFIX?=$(DESTDIR)/usr
BINDIR?=$(PREFIX)/bin
MANDIR?=$(PREFIX)/share/man/man1
# Check deps.
@ -23,8 +24,12 @@ normal:
debug:
$(CC) -o simpleswitcher-debug simpleswitcher.c -std=c99 $(CFLAGS) -Wunused-parameter -g -DDEBUG $(LDADD)
install:
install: install-man
install -Dm 755 simpleswitcher $(BINDIR)/simpleswitcher
install-man:
install -Dm 644 simpleswitcher.1 $(MANDIR)
gzip $(MANDIR)/simpleswitcher.1
clean:
rm -f simpleswitcher simpleswitcher-debug