summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2023-07-23 15:30:42 +0200
committerdavidovski <david@davidovski.xyz>2023-07-23 15:30:42 +0200
commit0d78ec0e53d9824a029840e74bf0721ed2187e6a (patch)
tree74781baff855e3f3760730c9897e932994f3a8a4 /makefile
parent5ec62c0a2a0357a79f92b8bb37f67272e7f910ff (diff)
add chunk caching
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 928632f..6edef8d 100644
--- a/makefile
+++ b/makefile
@@ -3,7 +3,7 @@ FLAGS=-lm -lraylib -ggdb
.DEFAULT_GOAL := editor
-EDITOR_SOURCE=src/chunkedtiledmap.c src/editor.c src/kdtree.c src/tiled.c
+EDITOR_SOURCE=src/tiledmap.c src/editor.c src/kdtree.c src/tiled.c
editor: ${EDITOR_SOURCE}
${CC} ${EDITOR_SOURCE} -o editor ${FLAGS}