From 8df9b9f19175effb728f3b587a65dd753457670e Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Mon, 1 Oct 2012 15:04:44 +0200 Subject: [PATCH] Correct some CXXFLAGS stuff in the Makefile. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5695c2e..af7ca8e 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ CC=gcc CXX=g++ -CFLAGS=-std=gnu99 -Wall +CXXFLAGS=-Wall LDFLAGS=-lSDL -lSDL_image -lGL test: test.o $(CXX) -o test test.o $(LDFLAGS) .o: .cpp - $(CXX) $(CXXFLAGS) $(CCFLAGS) -o $@ $< + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $@ $< clean: $(RM) test test.o -- 2.39.2