repo/busybox/Makefile
2021-06-30 15:46:51 +02:00

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