From 5ec62c0a2a0357a79f92b8bb37f67272e7f910ff Mon Sep 17 00:00:00 2001 From: davidovski Date: Sat, 22 Jul 2023 00:50:32 +0200 Subject: loading map data from chunks rather than tilelayout --- makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index 28fbdab..928632f 100644 --- a/makefile +++ b/makefile @@ -3,6 +3,7 @@ FLAGS=-lm -lraylib -ggdb .DEFAULT_GOAL := editor -editor: src/*.c src/editor.c - ${CC} src/*.c -o editor ${FLAGS} +EDITOR_SOURCE=src/chunkedtiledmap.c src/editor.c src/kdtree.c src/tiled.c +editor: ${EDITOR_SOURCE} + ${CC} ${EDITOR_SOURCE} -o editor ${FLAGS} -- cgit v1.2.1