diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-19 19:24:06 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-19 19:24:06 +0000 |
commit | b183dfad2daea713e712470d206b0f0287331083 (patch) | |
tree | 26a1f1080be5f9f44c72b45b72aae743d74685dd /libbb/Makefile | |
parent | cc165b9083e8e4fb01992a8e0d97ecf08cb6dcdd (diff) | |
download | busybox-b183dfad2daea713e712470d206b0f0287331083.tar.gz |
Split error messages into separate files.
Update libbb.h, per suggestion from Vladimir, to include __attribute__((format
(printf ...))) stuff
-Erik
Diffstat (limited to 'libbb/Makefile')
-rw-r--r-- | libbb/Makefile | 11 |
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 {} \; + |