diff options
author | June McEnroe <june@causal.agency> | 2018-08-02 00:29:35 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-02 00:29:35 -0400 |
commit | 9df93e8301c987eeb5f2ce4c28ba150efa900b03 (patch) | |
tree | 41ac736ddc93cada06c0ebae7cb1472256aac604 /Makefile | |
download | catgirl-9df93e8301c987eeb5f2ce4c28ba150efa900b03.tar.gz catgirl-9df93e8301c987eeb5f2ce4c28ba150efa900b03.zip |
Start IRC client
It dumps lines from the server onto the curses window.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
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 |