diff options
author | June McEnroe <june@causal.agency> | 2020-02-01 19:37:48 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-01 19:37:55 -0500 |
commit | e5363bcae0f726455fb4198cd21d46721ad5e39a (patch) | |
tree | a4f191af1fe34b16663247fad0784476311dde8c /Makefile | |
parent | Add term stuff (diff) | |
download | catgirl-e5363bcae0f726455fb4198cd21d46721ad5e39a.tar.gz catgirl-e5363bcae0f726455fb4198cd21d46721ad5e39a.zip |
Implement the beginnings of UI
It takes so much code to do anything in curses...
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 999b491..4af59ee 100644 --- a/Makefile +++ b/Makefile @@ -3,12 +3,13 @@ CFLAGS += -I${LIBRESSL_PREFIX}/include LDFLAGS += -L${LIBRESSL_PREFIX}/lib CFLAGS += -std=c11 -Wall -Wextra -Wpedantic -LDLIBS = -lcrypto -ltls +LDLIBS = -lcurses -lcrypto -ltls OBJS += chat.o OBJS += handle.o OBJS += irc.o OBJS += term.o +OBJS += ui.o catgirl: ${OBJS} ${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@ |