repo/busybox/Makefile

10 lines
165 B
Makefile

prepare:
git clone git://busybox.net/busybox.git
cd busybox
busybox:
make defconfig
make
install:
make install DESTDIR="${PREFIX}"
uninstall:
make uninstall