11 lines
184 B
Makefile
11 lines
184 B
Makefile
prepare:
|
|
git clone git://busybox.net/busybox.git
|
|
cd busybox
|
|
busybox:
|
|
make defconfig
|
|
make
|
|
install:
|
|
make install DESTDIR="${PREFIX}"
|
|
busybox --install
|
|
uninstall:
|
|
make uninstall
|