diff options
author | Rob Landley <rob@landley.net> | 2007-11-06 00:35:26 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-11-06 00:35:26 -0600 |
commit | 064d1b1e5d29f79060c47769da92d51f89bc9edd (patch) | |
tree | 3cc2d0ae8070e529ec211ed25d0e345970b9bd25 | |
parent | 6a6dee3132db0d62a827ddf02d88c899f7c15c31 (diff) | |
download | toybox-064d1b1e5d29f79060c47769da92d51f89bc9edd.tar.gz |
Move toybox_old delete (for bloatcheck) from clean to distclean.
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -66,10 +66,10 @@ install_flat: instlist @for i in `./instlist`; do ln -s toybox "$(PREFIX)/$$i"; done clean:: - rm -f toybox toybox_old toybox_unstripped gen_config.h instlist + rm -f toybox toybox_unstripped gen_config.h instlist distclean: clean - rm -f .config* + rm -f toybox_old .config* test: tests |