Back to shtanton's homepage
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--src/index.html.in10
2 files changed, 13 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2d1ea69..a652921 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,9 @@ build/main.wasm.b64: build/main.wasm
(printf '"'; base64 < build/main.wasm | tr -d '\n'; printf '"') > build/main.wasm.b64
build/index.html: src/index.html.in build/main.wasm.b64 build/music.mp3.b64 \
- build/continue.png.b64 build/exit.png.b64 build/pause.png.b64 build/play.png.b64 build/restart.png.b64
+ build/continue.png.b64 build/exit.png.b64 build/pause.png.b64 build/play.png.b64 build/restart.png.b64 \
+ build/nelson.png.b64 build/nelson_left.png.b64 build/nelson_up.png.b64 \
+ build/nelson_right.png.b64 build/nelson_down.png.b64
mkdir -p build
clang -E -P -undef -nostdinc -x c -o build/index.html src/index.html.in
diff --git a/src/index.html.in b/src/index.html.in
index 14731f6..9329c25 100644
--- a/src/index.html.in
+++ b/src/index.html.in
@@ -52,6 +52,16 @@ const IMAGES = [
,
#include "../build/restart.png.b64"
,
+#include "../build/nelson.png.b64"
+,
+#include "../build/nelson_left.png.b64"
+,
+#include "../build/nelson_up.png.b64"
+,
+#include "../build/nelson_right.png.b64"
+,
+#include "../build/nelson_down.png.b64"
+,
];
async function main() {