freebsd-ports/www/webgrind/files/patch-makefile
Li-Wen Hsu 188bf51b42 - Update to 1.4
- Pass maintainership to submitter

PR:		215065
Submitted by:	Franco Fichtner <franco@opnsense.org>
2016-12-07 05:37:19 +00:00

17 lines
331 B
Text

--- makefile.orig 2016-12-06 17:20:09 UTC
+++ makefile
@@ -1,4 +1,5 @@
-CXX = g++
+CXX ?= g++
+CXXFLAGS ?= -O2
SRCS = library/preprocessor.cpp
OUT = bin/preprocessor
@@ -15,6 +16,6 @@ clean:
rm -f $(OUT)
$(OUT): $(SRCS)
- $(CXX) -o $(OUT) -O2 -s $(SRCS)
+ $(CXX) -o $(OUT) $(CXXFLAGS) -s $(SRCS)
.PHONY: all help clean