catboy/Makefile
Curtis McEnroe 9df93e8301
Start IRC client
It dumps lines from the server onto the curses window.
2018-08-02 00:29:35 -04:00

13 lines
184 B
Makefile

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