diff --git a/do.ps1 b/do.ps1 index 3d74dc1..21478a6 100755 --- a/do.ps1 +++ b/do.ps1 @@ -47,7 +47,7 @@ $BLOCKS_RT_SOURCE = "$BLOCKS_RT_RUNTIME $BLOCKS_RT_DATA"; $EMSDK_REPO = "https://github.com/emscripten-core/emsdk.git"; $EMSDK_DIR = Join-Path $DEPS_DIR "emsdk"; -$C_SOURCE = "src/main.c"; +$C_SOURCE = "source/main.c"; $C_INCLUDES = "-Isrc -I$DEPS_DIR"; $C_FLAGS = "-std=c23 -fblocks -g $C_INCLUDES"; $RELEASE_FLAGS = "-Ofast -Wno-everything -ffast-math"; diff --git a/src/arena.c b/source/arena.c similarity index 100% rename from src/arena.c rename to source/arena.c diff --git a/src/base.c b/source/base.c similarity index 100% rename from src/base.c rename to source/base.c diff --git a/src/main.c b/source/main.c similarity index 100% rename from src/main.c rename to source/main.c