remove STL vector
[c11tester.git] / common.mk
index 9fe9f09745c73ef0f75e3776c9d09c4a6b58c3d0..aca498c7dffc8ab426fea26f84abc3b76e9f3e4f 100644 (file)
--- a/common.mk
+++ b/common.mk
@@ -1,14 +1,14 @@
 # A few common Makefile items
 
-CC = gcc
-CXX = g++
+CC := gcc
+CXX := g++
 
-UNAME = $(shell uname)
+UNAME := $(shell uname)
 
-LIB_NAME = model
-LIB_SO = lib$(LIB_NAME).so
+LIB_NAME := model
+LIB_SO := lib$(LIB_NAME).so
 
-CPPFLAGS += -Wall -g -O3
+CPPFLAGS += -Wall -g -O0
 
 # Mac OSX options
 ifeq ($(UNAME), Darwin)