From a72e2bed63a3aa24369db23995a80173b2cc5bb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Mon, 2 Oct 2017 03:18:43 +0200 Subject: [PATCH] makefile improvements --- .gitignore | 1 + Makefile | 15 +++++++++++++++ front-end | 2 +- release/.gitignore | 2 ++ 4 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 release/.gitignore 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