mirror of
https://github.com/yshui/picom.git
synced 2024-11-11 13:51:02 -05:00
use destdir. closes #15.
This commit is contained in:
parent
b3a272185d
commit
24ffba0e51
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -1,8 +1,8 @@
|
||||||
CC ?= gcc
|
CC ?= gcc
|
||||||
|
|
||||||
PREFIX ?= /usr
|
PREFIX ?= /usr
|
||||||
BINDIR ?= $(PREFIX)/bin
|
BINDIR ?= $(DESTDIR)$(PREFIX)/bin
|
||||||
MANDIR ?= $(PREFIX)/share/man/man1
|
MANDIR ?= $(DESTDIR)$(PREFIX)/share/man/man1
|
||||||
|
|
||||||
PACKAGES = x11 xcomposite xfixes xdamage xrender
|
PACKAGES = x11 xcomposite xfixes xdamage xrender
|
||||||
LIBS = $(shell pkg-config --libs $(PACKAGES)) -lm
|
LIBS = $(shell pkg-config --libs $(PACKAGES)) -lm
|
||||||
|
|
Loading…
Reference in a new issue