mirror of
https://git.freebsd.org/ports.git
synced 2025-06-25 06:30:29 -04:00
PR: 225141 Submitted by: Dmitri Goutnik <dg@syrec.org> Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D14113
15 lines
329 B
Makefile
15 lines
329 B
Makefile
--- config.mk.orig 2017-01-25 13:19:03 UTC
|
|
+++ config.mk
|
|
@@ -1,9 +1,9 @@
|
|
-PREFIX = /usr
|
|
+PREFIX ?= /usr/local
|
|
MANPREFIX = $(PREFIX)/man
|
|
|
|
CC = cc
|
|
LD = $(CC)
|
|
|
|
-CFLAGS = -std=c99 -pedantic -Wall -Os
|
|
-LDFLAGS = -lxcb -lxcb-util
|
|
+CFLAGS := -std=c99 -pedantic -Wall $(CFLAGS)
|
|
+LDFLAGS := -lxcb -lxcb-util $(LDFLAGS)
|
|
|