make ps accept (and ignore) all options (--help works of course).
tar now works with or without the leading "-" on the options.
 -Erik
diff --git a/Makefile b/Makefile
index 30fd718..6a4b41b 100644
--- a/Makefile
+++ b/Makefile
@@ -26,7 +26,7 @@
 # Set the following to `true' to make a debuggable build.
 # Leave this set to `false' for production use.
 # eg: `make DODEBUG=true tests'
-DODEBUG = false
+DODEBUG = true
 
 # If you want a static binary, turn this on.
 DOSTATIC = false
@@ -108,7 +108,7 @@
 	$(MAKE) -C docs
 	
 regexp.o nfsmount.o: %.o: %.h
-$(OBJECTS): %.o: busybox.def.h internal.h  %.c
+$(OBJECTS): %.o: busybox.def.h internal.h  %.c Makefile
 
 test tests:
 	cd tests && $(MAKE) all