diff options
author | Rob Landley <rob@landley.net> | 2008-01-22 19:20:06 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2008-01-22 19:20:06 -0600 |
commit | 5c010f7e4464c89ec38fca61362982aca33edfe1 (patch) | |
tree | abc0f3a59863edd6b8689363b97fe6a26bda98a3 /Makefile | |
parent | 81d937de94b8804e8122490404c54d0e2e4262a7 (diff) | |
download | toybox-5c010f7e4464c89ec38fca61362982aca33edfe1.tar.gz |
Might as well make the dependencies slightly more paranoid.
(The only reason to have dependencies at all is so "make install" doesn't
trigger a rebuild. A rebuild is always a build all anyway.)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ all: toybox -toybox toybox_unstripped: *.[ch] lib/*.[ch] toys/*.[ch] +toybox toybox_unstripped: *.[ch] lib/*.[ch] toys/*.[ch] scripts/* scripts/make.sh .PHONY: clean distclean baseline bloatcheck install_flat test tests help |