diff --git a/Makefile b/Makefile index 20fcd8e..6c7d391 100644 --- a/Makefile +++ b/Makefile @@ -11,10 +11,10 @@ build-wasm: emcc src/*.c \ -s WASM=1 \ -s USE_SDL=2 \ - -o public/index.js + -o docs/index.js clean-wasm: - rm -vf public/index.{js,wasm} + rm -vf docs/index.{js,wasm} run-wasm: - emrun public/index.html + emrun docs/index.html diff --git a/public/index.html b/docs/index.html similarity index 100% rename from public/index.html rename to docs/index.html diff --git a/public/index.js b/docs/index.js similarity index 100% rename from public/index.js rename to docs/index.js diff --git a/public/index.wasm b/docs/index.wasm similarity index 100% rename from public/index.wasm rename to docs/index.wasm diff --git a/public/style.css b/docs/style.css similarity index 100% rename from public/style.css rename to docs/style.css