aboutsummaryrefslogtreecommitdiff
path: root/libbb/Makefile
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-03-19 19:24:06 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-03-19 19:24:06 +0000
commit1c1085caec1e039147e737dd6fbdd0de1f77cf31 (patch)
tree26a1f1080be5f9f44c72b45b72aae743d74685dd /libbb/Makefile
parent55ff27793a2a50a13b7aed21deab3b97d7efb142 (diff)
downloadbusybox-w32-1c1085caec1e039147e737dd6fbdd0de1f77cf31.tar.gz
busybox-w32-1c1085caec1e039147e737dd6fbdd0de1f77cf31.tar.bz2
busybox-w32-1c1085caec1e039147e737dd6fbdd0de1f77cf31.zip
Split error messages into separate files.
Update libbb.h, per suggestion from Vladimir, to include __attribute__((format (printf ...))) stuff -Erik git-svn-id: svn://busybox.net/trunk/busybox@2145 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 @@
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