Skip to content

Commit 9196ea8

Browse files
committed
Add Makefile for busybox
1 parent a3a9531 commit 9196ea8

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

BusyBox/Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Makefile for busybox binary in WslInstall repository
2+
3+
DIR = busybox-1.30.1
4+
FILE = busybox-1.30.1.tar.bz2
5+
LINK = https://busybox.net/downloads/$(FILE)
6+
7+
bin:
8+
wget $(LINK)
9+
tar -xf $(FILE)
10+
cp .config $(DIR)
11+
cd $(DIR); $(MAKE)

0 commit comments

Comments
 (0)