summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 0 insertions, 15 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 2a5ece6..0000000
--- a/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-PROG=tiled
-CC=gcc
-FLAGS=-lm -lraylib
-
-.DEFAULT_GOAL := build
-
-install: ${PROG}
- cp ${PROG} ${PREFIX}/bin/
-
-build: ${PROG}.c
- ${CC} ${PROG}.c -o ${PROG} ${FLAGS}
-
-clean: ${PROG}
- rm ${PROG}
-