From 378223d7ec0e37fd60a7a3f23ce41f3ae1583cef Mon Sep 17 00:00:00 2001 From: Katherine Whitlock Date: Mon, 21 Apr 2014 05:51:07 +0000 Subject: [PATCH] CXXFLAGS --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9e917548..f8854f46 100755 --- a/Makefile +++ b/Makefile @@ -62,7 +62,7 @@ PASM := $(PASM_DIR)/pasm $(RM) $<.i %.o: %.cpp - $(CXX) -std=c++11 -c -o $@ $< + $(CXX) $(CXXFLAGS) -std=c++11 -c -o $@ $< %.o: %.c $(CC) $(CFLAGS) -c -o $@ $< @@ -71,7 +71,7 @@ PASM := $(PASM_DIR)/pasm $(foreach O,$(TARGETS),$(eval $O: $O.o $(PIXELBONE_OBJS) $(APP_LOADER_LIB))) $(TARGETS): - $(CXX) $(LDFLAGS) -o $@ $^ $(LDLIBS) + $(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS) .PHONY: clean