diff options
author | Rob Landley <rob@landley.net> | 2007-03-12 21:17:01 -0400 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-03-12 21:17:01 -0400 |
commit | 6126b258dc7c11d983ef007459e65a19925c0b2f (patch) | |
tree | ab5d3ade7b8880489a12de37d72794e7f6fc34e3 /Makefile | |
parent | d1ed4c625df616b845077ca1670a44e2ec66161f (diff) | |
download | toybox-6126b258dc7c11d983ef007459e65a19925c0b2f.tar.gz |
Convert HOST_CC to HOSTCC to be more like uClibc build.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ CFLAGS = -Wall -Wundef -Wno-char-subscripts -Os CC = $(CROSS_COMPILE)gcc $(CFLAGS) -funsigned-char STRIP = $(CROSS_COMPILE)strip -HOST_CC = gcc $(CFLAGS) -funsigned-char +HOSTCC = gcc $(CFLAGS) -funsigned-char all: toybox @@ -52,7 +52,7 @@ toybox: toybox_unstripped $(STRIP) toybox_unstripped -o toybox instlist: toybox - $(HOST_CC) -I . scripts/install.c -o instlist + $(HOSTCC) -I . scripts/install.c -o instlist install_flat: instlist @mkdir -p $(PREFIX)/ |