aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2022-03-30 14:34:32 +0300
committereug-vs <eugene@eug-vs.xyz>2022-03-30 14:34:32 +0300
commit6f4ac9571a0a6df9ec607e5a9a9b8d3e5f7bbc96 (patch)
tree482a50f3f67eb8197cf52af1953f5a7a3cf87024 /Makefile
parent3247a2c20fde12dd9a58e04544006c988d231e7d (diff)
downloadcarcassonne-engine-c-6f4ac9571a0a6df9ec607e5a9a9b8d3e5f7bbc96.tar.gz
feat: add NCurses GUI
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 94e43d6..f45146e 100755
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
CC=tcc
-CFLAGS=-g
+CFLAGS=-g -O2 -lncurses
SRC=src
OBJ=obj
SOURCES=$(wildcard $(SRC)/*.c)