11 lines
196 B
Makefile
11 lines
196 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
|