aboutsummaryrefslogtreecommitdiff
path: root/libbb/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/Makefile')
-rw-r--r--libbb/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/libbb/Makefile b/libbb/Makefile
new file mode 100644
index 000000000..a9ea76947
--- /dev/null
+++ b/libbb/Makefile
@@ -0,0 +1,11 @@
+# Silly wrapper makefile. This Makefile is _not_ used by the build system for
+# busybox, it is just to make working on libbb more conveinient.
+# -Erik Andersen
+
+all:
+ make -C .. libbb.a
+
+clean:
+ - rm -rf libbb.a
+ - find -name \*.o -exec rm -f {} \;
+