0.32
+ * usage() now printf the BusyBox version. This will help folks
+ realize that they are not in Kansas anymore.
* Fixed mkdir -m option so that it works.
0.31
endif
BINDIR=$(prefix)
-LIBRARIES=-lc
+LIBRARIES=
OBJECTS=$(shell ./busybox.sh)
CFLAGS+= -DBB_VER='"$(VERSION)"'
CFLAGS+= -DBB_BT='"$(BUILDTIME)"'
/* volatile so gcc knows this is the enod of the line */
volatile void usage(const char *usage)
{
+ fprintf(stderr, "BusyBox v%s (%s) multi-call binary -- GPL2\n\n", BB_VER, BB_BT);
fprintf(stderr, "Usage: %s\n", usage);
exit(FALSE);
}