aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2013-08-03 14:04:03 -0400
committerDave Reisner <dreisner@archlinux.org>2013-08-03 14:04:03 -0400
commit0c61eb9b47f0a706c68d9ce05fc1f0800657089a (patch)
treea5c9b2d584bfbf359f74fc742195afc2748fd208
parent60328ca75984b9ed729bec20a211071464090243 (diff)
downloadmirror-ponymix-0c61eb9b47f0a706c68d9ce05fc1f0800657089a.tar.gz
mirror-ponymix-0c61eb9b47f0a706c68d9ce05fc1f0800657089a.tar.bz2
mirror-ponymix-0c61eb9b47f0a706c68d9ce05fc1f0800657089a.zip
makefile: -std=c++11 should be part of CFLAGS
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 3a93916..9981945 100644
--- a/Makefile
+++ b/Makefile
@@ -5,9 +5,7 @@ ifneq "$(VDEVEL)" ""
V=$(VDEVEL)
endif
-CXX := $(CXX) -std=c++11
-
-base_CXXFLAGS = -Wall -Wextra -pedantic -O2 -g -DPONYMIX_VERSION=\"$(V)\"
+base_CXXFLAGS = -std=c++11 -Wall -Wextra -pedantic -O2 -g -DPONYMIX_VERSION=\"$(V)\"
base_LIBS = -lm
libpulse_CXXFLAGS = $(shell pkg-config --cflags libpulse)