b24980ec07
This patch solves the following issues: - The pkg-config files generates odd paths when using DESTDIR without PREFIX - DESTDIR is needed during compile time to compute library and header paths which it should not. - Installing with both DESTDIR and PREFIX set gives us odd paths - Make usage of DESTDIR and PREFIX more standard Signed-off-by: Marcus Folkesson <marcus.folkesson@gmail.com>
19 lines
437 B
Makefile
19 lines
437 B
Makefile
# Installation directories.
|
|
PREFIX ?= /usr
|
|
MAN8DIR ?= $(PREFIX)/share/man/man8
|
|
MAN5DIR ?= $(PREFIX)/share/man/man5
|
|
MAN3DIR ?= $(PREFIX)/share/man/man3
|
|
|
|
all:
|
|
|
|
install: all
|
|
mkdir -p $(DESTDIR)$(MAN3DIR)
|
|
mkdir -p $(DESTDIR)$(MAN5DIR)
|
|
mkdir -p $(DESTDIR)$(MAN8DIR)
|
|
install -m 644 man3/*.3 $(DESTDIR)$(MAN3DIR)
|
|
install -m 644 man5/*.5 $(DESTDIR)$(MAN5DIR)
|
|
install -m 644 man8/*.8 $(DESTDIR)$(MAN8DIR)
|
|
|
|
relabel:
|
|
|
|
indent distclean clean:
|