aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2022-05-20 22:50:50 +0200
committerTheJackiMonster <thejackimonster@gmail.com>2022-05-20 22:50:50 +0200
commit05d021e3994fc03341568053371f6f60ec848504 (patch)
tree5d26cca6c10ec8c8b87ea6997a53750df691fc7d /Makefile
parent07bdb5aed83867106b0d7a87969e3164aefee9d6 (diff)
downloadmessenger-cli-05d021e3994fc03341568053371f6f60ec848504.tar.gz
messenger-cli-05d021e3994fc03341568053371f6f60ec848504.zip
Added dialog to open chat with custom topic
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 84d5942..c836442 100644
--- a/Makefile
+++ b/Makefile
@@ -6,14 +6,16 @@ BINARY = messenger-cli
6SOURCES = messenger_cli.c\ 6SOURCES = messenger_cli.c\
7 application.c\ 7 application.c\
8 chat.c\ 8 chat.c\
9 ui/account_create.c\ 9 ui/account_create_dialog.c\
10 ui/accounts.c\ 10 ui/accounts.c\
11 ui/chat_open_dialog.c\
11 ui/chats.c\ 12 ui/chats.c\
12 ui/messages.c 13 ui/messages.c
13HEADERS = application.h\ 14HEADERS = application.h\
14 chat.h\ 15 chat.h\
15 ui/account_create.h\ 16 ui/account_create_dialog.h\
16 ui/accounts.h\ 17 ui/accounts.h\
18 ui/chat_open_dialog.h\
17 ui/chats.h\ 19 ui/chats.h\
18 ui/messages.h 20 ui/messages.h
19 21