mirror of
https://github.com/sheumann/hush.git
synced 2024-11-10 09:05:29 +00:00
12 lines
252 B
Makefile
12 lines
252 B
Makefile
|
# 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 {} \;
|
||
|
|