diff options
author | Dave Reisner <dreisner@archlinux.org> | 2013-08-03 14:04:03 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2013-08-03 14:04:03 -0400 |
commit | 0c61eb9b47f0a706c68d9ce05fc1f0800657089a (patch) | |
tree | a5c9b2d584bfbf359f74fc742195afc2748fd208 | |
parent | 60328ca75984b9ed729bec20a211071464090243 (diff) | |
download | mirror-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-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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) |