comparison Makefile @ 275:005af6006ce3

Update help, move test.sh to scripts, and fix "make test" to call right script.
author Rob Landley <rob@landley.net>
date Fri, 28 Mar 2008 00:44:44 -0500
parents 5b948171e495
children e711e375e9c6
comparison
equal deleted inserted replaced
274:5b948171e495 275:005af6006ce3
47 rm -f toybox_old .config* generated/help.h 47 rm -f toybox_old .config* generated/help.h
48 48
49 test: tests 49 test: tests
50 50
51 tests: 51 tests:
52 scripts/testall.sh 52 scripts/test.sh
53 53
54 help:: 54 help::
55 @echo ' toybox - Build toybox.' 55 @echo ' toybox - Build toybox.'
56 @echo ' baseline - Create busybox_old for use by bloatcheck.' 56 @echo ' baseline - Create busybox_old for use by bloatcheck.'
57 @echo ' bloatcheck - Report size differences between old and current versions' 57 @echo ' bloatcheck - Report size differences between old and current versions'
58 @echo ' test - Run test suite against compiled commands.' 58 @echo ' test - Run test suite against compiled commands.'
59 @echo ' clean - Delete temporary files.' 59 @echo ' clean - Delete temporary files.'
60 @echo ' distclean - Delete everything that isn't shipped.' 60 @echo ' distclean - Delete everything that isn't shipped.'
61 @echo ' install_flat - Install toybox into $PREFIX directory.' 61 @echo ' install_flat - Install toybox into $PREFIX directory.'
62 @echo ' install - Install toybox into subdirectories of $PREFIX.'
63 @echo ' uninstall_flat - Remove toybox from $PREFIX directory."
64 @echo ' uninstall - Remove toybox from subdirectories of $PREFIX."