1
0
Fork 0
mirror of https://github.com/Luzifer/tasmota-build.git synced 2024-11-09 18:00:07 +00:00
tasmota-build/Makefile
Knut Ahlers c666d70476
Upgrade to tasmota 6.2.1
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-10-05 12:59:11 +02:00

34 lines
703 B
Makefile

TASMOTA_VERSION=v6.2.1
default: build_sonoff build_sonoff-minimal
chown:
chown -R $(UID) build
ci: full-clean default
build_%: download venv
$(MAKE) update_user-config_$*
cd tasmota && ../venv/bin/platformio run -e $*
mkdir -p build
cp tasmota/.pioenvs/$*/firmware.bin build/$*.bin
clean:
rm -rf tasmota venv
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
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