1
0
mirror of https://github.com/Luzifer/tasmota-build.git synced 2024-09-20 02:42:58 +00:00
tasmota-build/Makefile

35 lines
704 B
Makefile
Raw Normal View History

TASMOTA_VERSION=v5.13.1
2018-01-18 19:13:35 +00:00
default: build_sonoff build_sonoff-minimal
chown:
chown -R $(UID) build
ci: full-clean default
2018-01-18 19:13:35 +00:00
build_%: download venv
$(MAKE) update_user-config_$*
2018-01-18 19:13:35 +00:00
cd tasmota && ../venv/bin/platformio run -e $*
mkdir -p build
cp tasmota/.pioenvs/$*/firmware.bin build/$*.bin
clean:
rm -rf tasmota venv
2018-01-18 19:13:35 +00:00
download:
git clone https://github.com/arendst/Sonoff-Tasmota.git tasmota
cd tasmota && git reset --hard $(TASMOTA_VERSION)
full-clean: clean
rm -rf build
update_user-config_%: venv
./venv/bin/python update.py config_$*.yml
2018-01-18 19:13:35 +00:00
cd tasmota && git --no-pager diff -w sonoff/user_config.h
venv:
virtualenv -p python2 venv
./venv/bin/pip install -r requirements.txt
.PHONY: venv