From 33555bc37a0589d35431c6e7dfc732cf922335c1 Mon Sep 17 00:00:00 2001 From: Sam Chudnick Date: Sun, 7 Nov 2021 07:09:44 -0500 Subject: initial commit --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..aea03ac --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +CC ?= cc +LDFLAGS = -lncurses + +output: + ${CC} main.c ncurses.c valid.c checks.c computer_player.c $(LDFLAGS) -o chess + +clean: + rm -f chess + +install: output -- cgit v1.2.3