-
Notifications
You must be signed in to change notification settings - Fork 5
Buildroot
Dmitry Ponyatov edited this page Aug 14, 2019
·
8 revisions
## Makefile
os: dirs gz
BR_VER = 2019.02.4
BR = buildroot-$(BR_VER)
BR_GZ = $(BR).tar.gz
MODULE = $(notdir $(CURDIR))
CWD = $(CURDIR)
GZ = $(CWD)/gz
TMP = $(CWD)/tmp
SRC = $(TMP)/src
dirs:
mkdir -p $(GZ) $(TMP) $(SRC)
gz: $(GZ)/$(BR_GZ)
$(GZ)/$(BR_GZ):
wget -c -O $@ https://github.com/buildroot/buildroot/archive/$(BR_VER).tar.gz