Skip to content

Commit

Permalink
Add Makefile for busybox
Browse files Browse the repository at this point in the history
  • Loading branch information
Biswa96 committed Apr 3, 2019
1 parent a3a9531 commit 9196ea8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions BusyBox/Makefile
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 9196ea8

Please sign in to comment.