aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2022-04-17 23:31:37 +0200
committerTheJackiMonster <thejackimonster@gmail.com>2022-04-17 23:31:37 +0200
commitd75a06e86407204e302fe3a49d8e2c137d1fbe2b (patch)
treec9bcc9673d31bad8dc0716ed1d6f223fcc0a43e9 /Makefile
parent85e489d74a931a1bbc809933b53e593da0f880a7 (diff)
downloadmessenger-cli-d75a06e86407204e302fe3a49d8e2c137d1fbe2b.tar.gz
messenger-cli-d75a06e86407204e302fe3a49d8e2c137d1fbe2b.zip
Added very basic messages list
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 24f771d..237681e 100644
--- a/Makefile
+++ b/Makefile
@@ -4,10 +4,14 @@ INSTALL_DIR ?= /usr/local/
4 4
5BINARY = messenger-cli 5BINARY = messenger-cli
6SOURCES = messenger_cli.c\ 6SOURCES = messenger_cli.c\
7 application.c\ 7 application.c\
8 chat.c\ 8 chat.c\
9 ui/accounts.c 9 ui/accounts.c\
10HEADERS = 10 ui/messages.c
11HEADERS = application.h\
12 chat.h\
13 ui/accounts.h\
14 ui/messages.h
11 15
12LIBRARIES = gnunetchat gnunetutil ncurses 16LIBRARIES = gnunetchat gnunetutil ncurses
13 17