1# Silly wrapper makefile.  This Makefile is _not_ used by the build system for
2# busybox, it is just to make working on libbb more conveinient.
3#  -Erik Andersen
4
5all:
6	make -C .. libbb.a
7
8clean:
9	- rm -rf libbb.a
10	- find -name \*.o -exec rm -f {} \;
11
12