comparison Makefile @ 42:72ff42c01d92

Teach clean and distclean to zap more files.
author Rob Landley <rob@landley.net>
date Sun, 26 Nov 2006 18:54:03 -0500
parents a43bdc6f53af
children e60d48d30ef0
comparison
equal deleted inserted replaced
41:a43bdc6f53af 42:72ff42c01d92
41 -ffunction-sections -fdata-sections -Wl,--gc-sections 41 -ffunction-sections -fdata-sections -Wl,--gc-sections
42 42
43 toybox: toybox_unstripped 43 toybox: toybox_unstripped
44 $(STRIP) toybox_unstripped -o toybox 44 $(STRIP) toybox_unstripped -o toybox
45 clean:: 45 clean::
46 rm -f toybox gen_config.h 46 rm -f toybox toybox_old toybox_unstripped gen_config.h
47 47
48 distclean: clean 48 distclean: clean
49 rm -f .config 49 rm -f .config*
50 50
51 help:: 51 help::
52 @echo ' baseline - Create busybox_old for use by bloatcheck.' 52 @echo ' baseline - Create busybox_old for use by bloatcheck.'
53 @echo ' bloatcheck - Report size differences between old and current versions' 53 @echo ' bloatcheck - Report size differences between old and current versions'