diff Makefile @ 38:b707dfcd403c

Reduce flag duplication and make kconfig use HOST_CC.
author Rob Landley <rob@landley.net>
date Sun, 26 Nov 2006 17:18:29 -0500
parents 7d3f0ff39878
children a43bdc6f53af
line wrap: on
line diff
--- a/Makefile	Sat Nov 25 16:50:00 2006 -0500
+++ b/Makefile	Sun Nov 26 17:18:29 2006 -0500
@@ -2,8 +2,8 @@
 # Copyright 2006 Rob Landley <rob@landley.net>
 
 CFLAGS  = -Wall -Wundef -Os -s
-CC      = $(CROSS_COMPILE)gcc $(CFLAGS)
-HOST_CC = gcc $(CFLAGS)
+CC      = $(CROSS_COMPILE)gcc $(CFLAGS) -funsigned-char
+HOST_CC = gcc $(CFLAGS) -funsigned-char
 
 all: toybox
 
@@ -29,8 +29,8 @@
 
 toyfiles = main.c toys/*.c lib/*.c
 toybox: gen_config.h $(toyfiles) toys/toylist.h lib/lib.h toys.h
-	$(CC) -Wall -Os -s -funsigned-char $(CFLAGS) -I . \
-		$(toyfiles) -o toybox -ffunction-sections -fdata-sections -Wl,--gc-sections
+	$(CC) $(CFLAGS) -I . $(toyfiles) -o toybox \
+		-ffunction-sections -fdata-sections -Wl,--gc-sections
 
 clean::
 	rm -f toybox gen_config.h