From 9196ea807a93d0381cdc075c5dcfddc5ccee0ef5 Mon Sep 17 00:00:00 2001 From: Biswa96 Date: Wed, 3 Apr 2019 14:09:10 +0530 Subject: [PATCH] Add Makefile for busybox --- BusyBox/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 BusyBox/Makefile diff --git a/BusyBox/Makefile b/BusyBox/Makefile new file mode 100644 index 0000000..dc34c84 --- /dev/null +++ b/BusyBox/Makefile @@ -0,0 +1,11 @@ +# Makefile for busybox binary in WslInstall repository + +DIR = busybox-1.30.1 +FILE = busybox-1.30.1.tar.bz2 +LINK = https://busybox.net/downloads/$(FILE) + +bin: + wget $(LINK) + tar -xf $(FILE) + cp .config $(DIR) + cd $(DIR); $(MAKE)