diff --git a/.gitignore b/.gitignore index c013837..3334351 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ cmake-build-debug/ .sass-cache *.map +.gitignore diff --git a/Makefile b/Makefile index c503bcf..56be03c 100644 --- a/Makefile +++ b/Makefile @@ -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: diff --git a/front-end b/front-end index 6f165da..69e5b77 160000 --- a/front-end +++ b/front-end @@ -1 +1 @@ -Subproject commit 6f165da9b6237fd88efc836a663a429ed8aadb6e +Subproject commit 69e5b774475fc78c6244d3e14ade7a677760a731 diff --git a/release/.gitignore b/release/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/release/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore