mirror of
https://github.com/hyprwm/hyprpaper.git
synced 2024-11-16 22:25:59 +01:00
fix: respect PREFIX in Makefile (#106)
This commit is contained in:
parent
d6856adaff
commit
38e18b7077
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -1,4 +1,4 @@
|
|||
PREFIX = /usr/local
|
||||
PREFIX ?= /usr
|
||||
CFLAGS ?= -g -Wall -Wextra -Werror -Wno-unused-parameter -Wno-sign-compare -Wno-unused-function -Wno-unused-variable -Wno-unused-result -Wdeclaration-after-statement
|
||||
|
||||
CFLAGS += -I. -DWLR_USE_UNSTABLE -std=c99
|
||||
|
@ -71,4 +71,4 @@ all:
|
|||
|
||||
install:
|
||||
make all
|
||||
cp ./build/hyprpaper /usr/bin -f
|
||||
cp ./build/hyprpaper $(PREFIX)/bin -f
|
||||
|
|
Loading…
Reference in a new issue