repo/busybox/Makefile

12 lines
196 B
Makefile
Raw Normal View History

2021-06-28 18:11:43 +03:00
prepare:
git clone git://busybox.net/busybox.git
2021-06-28 18:55:53 +03:00
cd busybox
2021-06-28 18:11:43 +03:00
busybox:
$(MAKE) defconfig
$(MAKE)
2021-06-28 18:11:43 +03:00
install:
$(MAKE) install DESTDIR="${PREFIX}"
2021-06-30 16:46:51 +03:00
busybox --install
2021-06-28 18:55:53 +03:00
uninstall:
$(MAKE) uninstall