blob: a9ea769473999ef2ecfceef5647bbeb2f6741f7b [file] [log] [blame]
Eric Andersenb183dfa2001-03-19 19:24:06 +00001# 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