diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-16 22:24:17 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-16 22:24:17 +0100 |
commit | 4893f466c54b0dc48e97f785fa6b1b5b1e01e4ca (patch) | |
tree | d7e46b39cae842f248cf8fe1e589246823b298e4 /Makefile | |
parent | 732db5d2473cb5bf2c7d3e28b67e47cecf6008a8 (diff) |
remove cleantarget at the moment
we share all toolchains in host_<gnu_host_name> directory,
so the existing cleantarget does not work as expected.
remove it for now.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -32,8 +32,7 @@ help: @echo ' kernelconfig - Modify the target kernel configuration' @echo '' @echo 'Cleaning targets:' - @echo ' clean - Remove bin and build_dir directories' - @echo ' cleantarget - Same as "clean", but also remove toolchain for target' + @echo ' clean - Remove firmware and build directories' @echo ' cleandir - Same as "clean", but also remove all built toolchains' @echo ' cleankernel - Remove kernel dir, useful if you changed any kernel patches' @echo ' distclean - Same as "cleandir", but also remove downloaded' @@ -100,10 +99,6 @@ cleandir dirclean: .prereq_done -@${GMAKE_INV} cleandir @-rm -f make.log .prereq_done -cleantarget targetclean: .prereq_done - -@${GMAKE_INV} cleantarget - @-rm -f make.log - cleantoolchain toolchainclean: .prereq_done -@${GMAKE_INV} cleantoolchain |