From 30d79a1411d584cbb46f8356c82bbbf8702df58d Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 29 May 2007 16:26:47 -0400 Subject: Make it easier to specify which compiler to use. --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index fe23a332..dec52d8b 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,10 @@ # Copyright 2006 Rob Landley CFLAGS = -Wall -Wundef -Wno-char-subscripts -Os -CC = $(CROSS_COMPILE)gcc $(CFLAGS) -funsigned-char +CCFLAGS = $(CFLAGS) -funsigned-char +CC = $(CROSS_COMPILE)gcc STRIP = $(CROSS_COMPILE)strip -HOSTCC = gcc $(CFLAGS) -funsigned-char +HOSTCC = gcc all: toybox @@ -45,14 +46,14 @@ toysfiles = $(shell sed -nre 's/^CONFIG_(.*)=y/\1/;t skip;b;:skip;s/_.*//;p' .co toyfiles = main.c lib/*.c $(toysfiles) toybox_unstripped: gen_config.h $(toyfiles) toys/toylist.h lib/*.h toys.h - $(CC) $(CFLAGS) -I . $(toyfiles) -o toybox_unstripped \ + $(CC) $(CCFLAGS) -I . $(toyfiles) -o toybox_unstripped \ -ffunction-sections -fdata-sections -Wl,--gc-sections toybox: toybox_unstripped $(STRIP) toybox_unstripped -o toybox instlist: toybox - $(HOSTCC) -I . scripts/install.c -o instlist + $(HOSTCC) $(CCFLAGS) -I . scripts/install.c -o instlist install_flat: instlist @mkdir -p $(PREFIX)/ -- cgit v1.2.3