Rename game.html to my_project.html in Makefile

This commit is contained in:
Stephen Seo 2024-09-18 19:31:38 +09:00
parent e66f127a05
commit 1a105edba8

View file

@ -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 dist: rust_src/target/wasm32-unknown-emscripten/${RUST_BUILD_TYPE}/libems_rust_template.a src/main.c.o
@mkdir dist @mkdir dist
${CC} -o dist/game.html ${CFLAGS} $^ ${CC} -o dist/my_project.html ${CFLAGS} $^
ln -s game.html dist/index.html ln -s my_project.html dist/index.html
.PHONY: clean .PHONY: clean