makefile improvements

This commit is contained in:
2017-10-02 03:18:43 +02:00
parent 679f0adbae
commit a72e2bed63
4 changed files with 19 additions and 1 deletions
+15
View File
@@ -210,6 +210,21 @@ espmac:
all: checkdirs
$(Q) make actual_all -j4 -B
release:
ESP_LANG=cs make web
make actual_all -j4
cp firmware/0x00000.bin release/0x00000.bin
cp firmware/0x40000.bin release/0x40000-CS.bin
ESP_LANG=en make web
make actual_all -j4
cp firmware/0x40000.bin release/0x40000-EN.bin
ESP_LANG=de make web
make actual_all -j4
cp firmware/0x40000.bin release/0x40000-DE.bin
actual_all: parser $(TARGET_OUT) $(FW_BASE)
libesphttpd/Makefile: