From 9df93e8301c987eeb5f2ce4c28ba150efa900b03 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Thu, 2 Aug 2018 00:29:35 -0400 Subject: Start IRC client It dumps lines from the server onto the curses window. --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..32b03e0 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +CFLAGS += -Wall -Wextra -Wpedantic +CFLAGS += -I/usr/local/include +LDFLAGS += -L/usr/local/lib +LDLIBS = -lcurses -ltls + +all: tags chat + +tags: *.c + ctags -w *.c + +clean: + rm -f tags chat -- cgit 1.4.1