From 88a909e86cebb9d93e404546e67fc4dd1ace0ca5 Mon Sep 17 00:00:00 2001
From: Sebastien Bourdeauducq <sebastien@milkymist.org>
Date: Fri, 25 May 2012 17:20:04 +0200
Subject: [PATCH] software: cleanup CFLAGS

---
 software/common.mak | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/software/common.mak b/software/common.mak
index 0f904505f..168dba84f 100644
--- a/software/common.mak
+++ b/software/common.mak
@@ -35,11 +35,10 @@ endif
 
 # Toolchain options
 #
-INCLUDES_NOLIBC ?= -nostdinc -I$(M2DIR)/software/include/base
-INCLUDES = $(INCLUDES_NOLIBC) -I$(M2DIR)/software/include -I$(M2DIR)/common
-ASFLAGS = $(INCLUDES) -nostdinc
+INCLUDES = -I$(M2DIR)/software/include/base -I$(M2DIR)/software/include -I$(M2DIR)/common
+ASFLAGS = -nostdinc $(INCLUDES)
 CFLAGS = -O9 -Wall -Wstrict-prototypes -Wold-style-definition -Wshadow \
-	 -Wmissing-prototypes -fsigned-char $(INCLUDES)
+	 -Wmissing-prototypes -fsigned-char -nostdinc $(INCLUDES)
 LDFLAGS = -nostdlib -nodefaultlibs
 
 # compile and generate dependencies, based on