diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-12-06 16:34:10 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-12-16 08:59:43 -0500 |
commit | 475c506d08b20314f68c5280095a26802490c981 (patch) | |
tree | 05810fdbde031b84f27a79cf0d64944888081b55 | |
parent | aaed2eb5c741b4d2184d0a270edf30e4209fa07d (diff) |
Makefile, .gitignore: Cleanup non-existing binaries
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Makefile | 7 | ||||
-rw-r--r-- | examples/standalone/.gitignore | 1 | ||||
-rw-r--r-- | tools/.gitignore | 1 |
4 files changed, 2 insertions, 9 deletions
diff --git a/.gitignore b/.gitignore index a1f07f00c67..3b14c256e19 100644 --- a/.gitignore +++ b/.gitignore @@ -47,8 +47,6 @@ /u-boot.ais /u-boot.dtb /u-boot.sb -/u-boot.bd -/u-boot.geany # # Generated files @@ -756,7 +756,6 @@ $(obj).boards.depend: boards.cfg clean: @rm -f $(obj)examples/standalone/atmel_df_pow2 \ - $(obj)examples/standalone/eepro100_eeprom \ $(obj)examples/standalone/hello_world \ $(obj)examples/standalone/interrupt \ $(obj)examples/standalone/mem_to_mem_idma2intr \ @@ -766,9 +765,9 @@ clean: $(obj)examples/standalone/timer @rm -f $(obj)examples/api/demo{,.bin} @rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \ - $(obj)tools/env/{fw_printenv,fw_setenv} \ + $(obj)tools/env/fw_printenv \ $(obj)tools/envcrc \ - $(obj)tools/gdb/{astest,gdbcont,gdbsend} \ + $(obj)tools/gdb/{gdbcont,gdbsend} \ $(obj)tools/gen_eth_addr $(obj)tools/img2srec \ $(obj)tools/dump{env,}image \ $(obj)tools/mk{env,}image $(obj)tools/mpc86x_clk \ @@ -779,7 +778,6 @@ clean: $(obj)tools/proftool @rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \ $(obj)board/matrix_vision/*/bootscript.img \ - $(obj)board/voiceblue/eeprom \ $(obj)u-boot.lds \ $(obj)arch/blackfin/cpu/init.{lds,elf} @rm -f $(obj)include/bmp_logo.h @@ -815,7 +813,6 @@ clobber: tidy @rm -f $(obj)u-boot.ais @rm -f $(obj)u-boot.dtb @rm -f $(obj)u-boot.sb - @rm -f $(obj)u-boot.bd @rm -f $(obj)u-boot.spr @rm -f $(obj)nand_spl/{u-boot.{lds,lst},System.map} @rm -f $(obj)nand_spl/{u-boot-nand_spl.lds,u-boot-spl,u-boot-spl.map} diff --git a/examples/standalone/.gitignore b/examples/standalone/.gitignore index 1ff25b510d8..6d3a6166d26 100644 --- a/examples/standalone/.gitignore +++ b/examples/standalone/.gitignore @@ -1,5 +1,4 @@ /atmel_df_pow2 -/eepro100_eeprom /hello_world /interrupt /mem_to_mem_idma2intr diff --git a/tools/.gitignore b/tools/.gitignore index 2320fd80a17..930fa2e8a0e 100644 --- a/tools/.gitignore +++ b/tools/.gitignore @@ -9,7 +9,6 @@ /mpc86x_clk /mxsboot /ncb -/ncp /proftool /ubsha1 /xway-swap-bytes |