From 3d356b409005ffeadfc8493dadfec5dc8cd4f4d4 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Thu, 10 Jun 2021 13:17:55 +0300 Subject: feat: print chess board to stdout, remove ncurses --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index b682fe2..94e43d6 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC=tcc -CFLAGS=-lncurses +CFLAGS=-g SRC=src OBJ=obj SOURCES=$(wildcard $(SRC)/*.c) @@ -15,7 +15,7 @@ build: $(BIN) $(BIN): $(OBJECTS) $(CC) $(CFLAGS) $(OBJECTS) -o $(BIN) -$(OBJ)/%.o: $(SRC)/%.c +$(OBJ)/%.o: $(SRC)/%.c $(SRC)/*.h $(CC) -c $< -o $@ clean: -- cgit v1.2.3