diff options
author | wdenk <wdenk> | 2004-09-08 22:03:11 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-09-08 22:03:11 +0000 |
commit | eedcd078fe1434d93b84322c4e14c52f80282a41 (patch) | |
tree | 0dd7b16045dd41fbda926f929f1d7cf8edbd2ae0 /tools/Makefile | |
parent | 7ca202f566a6e9dc3d0dd0216e82ad1a48f50f19 (diff) | |
download | u-boot-imx-eedcd078fe1434d93b84322c4e14c52f80282a41.zip u-boot-imx-eedcd078fe1434d93b84322c4e14c52f80282a41.tar.gz u-boot-imx-eedcd078fe1434d93b84322c4e14c52f80282a41.tar.bz2 |
* Patch by Detlev Zundel, 08 Sep 2004:
Update etags build target
* Improve NetConsole support: add support for broadcast destination
address and buffered input.
* Cleanup compiler warnings for GCC 3.3.x and later
* Fix problem in cmd_jffs2.c introduced by CFG_JFFS_SINGLE_PART patch
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile index 0576a3f..9115430 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -131,6 +131,10 @@ mkimage$(SFX): mkimage.o crc32.o $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^ $(STRIP) $@ +ncb$(SFX): ncb.o + $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^ + $(STRIP) $@ + gen_eth_addr$(SFX): gen_eth_addr.o $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^ $(STRIP) $@ @@ -156,6 +160,9 @@ crc32.o: crc32.c mkimage.o: mkimage.c $(CC) -g $(CFLAGS) -c $< +ncb.o: ncb.c + $(CC) -g $(CFLAGS) -c $< + gen_eth_addr.o: gen_eth_addr.c $(CC) -g $(CFLAGS) -c $< |