summaryrefslogtreecommitdiff
path: root/client/makefile
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-05-30 12:31:23 +0200
committerlonkaars <loek@pipeframe.xyz>2022-05-30 12:31:23 +0200
commit03862852b128748358dcb39ce50600eef0ba1a71 (patch)
treed5052d02d7bb31a866d5829eb05cfaf9b35bfa59 /client/makefile
parent555e5d2c0ce77dd1e031690c98ec9a1366182347 (diff)
use ncurses instead of poopy ui library
Diffstat (limited to 'client/makefile')
-rw-r--r--client/makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/makefile b/client/makefile
index f70f70f..e48eaeb 100644
--- a/client/makefile
+++ b/client/makefile
@@ -2,6 +2,7 @@ CC = gcc
LD = gcc
RM = rm -f
CFLAGS =
+LDFLAGS = -lncursesw
EXECNAME = main
include ../shared/os.mk
@@ -18,7 +19,7 @@ OBJECTS := $(patsubst %.c,%.o, $(SOURCES))
$(CC) -c $(CFLAGS) $<
$(EXECNAME): $(OBJECTS)
- $(CC) $(OBJECTS) -o $(EXECNAME)
+ $(CC) $(LDFLAGS) $(OBJECTS) -o $(EXECNAME)
clean::
$(RM) $(EXECNAME) *.o