From 1d2ff4c4f6b9feec493b5c49e318a30040d2476a Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Tue, 25 Dec 2018 15:56:01 -0500 Subject: Add 2048 game --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..162783a --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +CFLAGS += -std=c11 -Wall -Wextra +LDLIBS = -lcurses + +OBJS += play.o +OBJS += 2048.o + +all: tags play + +play: $(OBJS) + $(CC) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@ + +tags: *.c + ctags -w *.c -- cgit 1.4.1