diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-07-19 15:17:03 -0400 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-07-23 21:26:14 +0200 |
commit | 9aef73888509d10193615ee5cd9cf439ca44e937 (patch) | |
tree | 7a54a47f6456799f8d7531538b1f1e965d7b4907 /board/netstar | |
parent | 2e9393f500065f940e5e4ac7fe375e4c0b77b936 (diff) | |
download | u-boot-imx-9aef73888509d10193615ee5cd9cf439ca44e937.zip u-boot-imx-9aef73888509d10193615ee5cd9cf439ca44e937.tar.gz u-boot-imx-9aef73888509d10193615ee5cd9cf439ca44e937.tar.bz2 |
unify HOST_CFLAGS and HOSTCFLAGS
The top build system sets up HOSTCFLAGS a bit and exports it, but other
places use HOST_CFLAGS instead. Unify the two as HOSTCFLAGS so that the
values stay in sync.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'board/netstar')
-rw-r--r-- | board/netstar/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/board/netstar/Makefile b/board/netstar/Makefile index cb3f7c9..8f35f93 100644 --- a/board/netstar/Makefile +++ b/board/netstar/Makefile @@ -42,7 +42,7 @@ LOAD_ADDR = 0x10400000 LDSCRIPT = $(TOPDIR)/board/$(BOARDDIR)/eeprom.lds lnk = $(if $(obj),$(obj),.) -HOST_CFLAGS = -Wall -pedantic -I$(TOPDIR)/include +HOSTCFLAGS = -Wall -pedantic -I$(TOPDIR)/include all: $(obj).depend $(LIB) $(obj)eeprom.srec $(obj)eeprom.bin \ $(obj)crcek.srec $(obj)crcek.bin $(obj)crcit @@ -70,13 +70,13 @@ $(obj)crcek.bin: $(obj)crcek.srec $(OBJCOPY) -I srec -O binary $< $@ 2>/dev/null $(obj)crcit: $(obj)crcit.o $(obj)crc32.o - $(HOSTCC) $(HOST_CFLAGS) -o $@ $^ + $(HOSTCC) $(HOSTCFLAGS) -o $@ $^ $(obj)crcit.o: crcit.c - $(HOSTCC) $(HOST_CFLAGS) -o $@ -c $< + $(HOSTCC) $(HOSTCFLAGS) -o $@ -c $< $(obj)crc32.o: $(SRCTREE)/lib_generic/crc32.c - $(HOSTCC) $(HOST_CFLAGS) -DUSE_HOSTCC -o $@ -c $< + $(HOSTCC) $(HOSTCFLAGS) -DUSE_HOSTCC -o $@ -c $< clean: rm -f $(SOBJS) $(OBJS) $(obj)eeprom $(obj)eeprom.srec \ |