diff options
author | Rob Landley <rob@landley.net> | 2011-12-28 16:17:13 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2011-12-28 16:17:13 -0600 |
commit | e614ee1e1dcf465eedf57184f95dab16f4dc40c2 (patch) | |
tree | 7ededc5ef2a6dd98d6c39cb7d8d7430472fe9d56 /Makefile | |
parent | f265d04ab8214f4789a7ff971acba3d97b84a0e0 (diff) | |
download | toybox-e614ee1e1dcf465eedf57184f95dab16f4dc40c2.tar.gz |
Fix "make help".
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -57,8 +57,8 @@ help:: @echo ' bloatcheck - Report size differences between old and current versions' @echo ' test - Run test suite against compiled commands.' @echo ' clean - Delete temporary files.' - @echo ' distclean - Delete everything that isn't shipped.' - @echo ' install_flat - Install toybox into $PREFIX directory.' - @echo ' install - Install toybox into subdirectories of $PREFIX.' - @echo ' uninstall_flat - Remove toybox from $PREFIX directory." - @echo ' uninstall - Remove toybox from subdirectories of $PREFIX." + @echo " distclean - Delete everything that isn't shipped." + @echo ' install_flat - Install toybox into $$PREFIX directory.' + @echo ' install - Install toybox into subdirectories of $$PREFIX.' + @echo ' uninstall_flat - Remove toybox from $$PREFIX directory.' + @echo ' uninstall - Remove toybox from subdirectories of $$PREFIX.' |