summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2023-07-11 21:08:27 +0100
committerdavidovski <david@davidovski.xyz>2023-07-11 21:08:27 +0100
commitebbb6c8b0302589626a594399ec04e3c4555d5f6 (patch)
tree71a6c489352c58759433f6c1b814a3f3fa63e341 /makefile
parent625cb961a3b35afdaf6d5c1e8bf4966a522a022a (diff)
do not allow editing tiles outside of the tilemap
Diffstat (limited to 'makefile')
-rw-r--r--makefile11
1 files changed, 1 insertions, 10 deletions
diff --git a/makefile b/makefile
index 3993cde..28fbdab 100644
--- a/makefile
+++ b/makefile
@@ -1,17 +1,8 @@
CC=gcc
FLAGS=-lm -lraylib -ggdb
-.DEFAULT_GOAL := build
-
-install: tiled
- cp tiled ${PREFIX}/bin/
-
-build: src/*.c src/*.h
- ${CC} src/*.c -o tiled ${FLAGS}
+.DEFAULT_GOAL := editor
editor: src/*.c src/editor.c
${CC} src/*.c -o editor ${FLAGS}
-clean: tiled
- rm tiled
-