From 1a105edba8422e051355c47bc217c80d2c7431f6 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Wed, 18 Sep 2024 19:31:38 +0900 Subject: [PATCH] Rename game.html to my_project.html in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index da65e65..9d7d421 100644 --- a/Makefile +++ b/Makefile @@ -27,8 +27,8 @@ rust_src/target/wasm32-unknown-emscripten/${RUST_BUILD_TYPE}/libems_rust_templat dist: rust_src/target/wasm32-unknown-emscripten/${RUST_BUILD_TYPE}/libems_rust_template.a src/main.c.o @mkdir dist - ${CC} -o dist/game.html ${CFLAGS} $^ - ln -s game.html dist/index.html + ${CC} -o dist/my_project.html ${CFLAGS} $^ + ln -s my_project.html dist/index.html .PHONY: clean