aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2023-02-03 22:44:51 +0100
committerTheJackiMonster <thejackimonster@gmail.com>2023-02-03 22:44:51 +0100
commit739f0621a7c491b74f061ea1fafd91e12d2cc5e6 (patch)
tree8cea2e6f8b47fcdbfde80b882a007bab7bdf49f7
parenta7cae3bf498397d1514aeeb6c3d0d48037385132 (diff)
downloadmessenger-cli-739f0621a7c491b74f061ea1fafd91e12d2cc5e6.tar.gz
messenger-cli-739f0621a7c491b74f061ea1fafd91e12d2cc5e6.zip
Remove automake files
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
-rw-r--r--.gitignore1
-rw-r--r--Makefile.am5
-rw-r--r--src/Makefile.am30
-rw-r--r--src/ui/Makefile.am17
4 files changed, 1 insertions, 52 deletions
diff --git a/.gitignore b/.gitignore
index dfa68b4..8f8cabf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -20,6 +20,7 @@ Makefile
20.project 20.project
21.settings/ 21.settings/
22.cache/ 22.cache/
23.vscode/
23 24
24# Binary files: 25# Binary files:
25*.o 26*.o
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index e0f1ffe..0000000
--- a/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
1# This Makefile.am is in the public domain
2
3SUBDIRS = src
4
5ACLOCAL_AMFLAGS = -I m4
diff --git a/src/Makefile.am b/src/Makefile.am
deleted file mode 100644
index dc4e4c4..0000000
--- a/src/Makefile.am
+++ /dev/null
@@ -1,30 +0,0 @@
1# This Makefile.am is in the public domain
2
3SUBDIRS = ui
4
5bin_PROGRAMS = messenger-cli
6
7messenger_cli_SOURCES = \
8 application.c application.h \
9 chat.c chat.h \
10 util.c util.h \
11 messenger_cli.c
12
13messenger_cli_LDADD = \
14 ui/libui.a
15
16messenger_cli_LDFLAGS = \
17 -lgnunetchat \
18 -lgnunetutil \
19 -lncurses
20
21messenger_cli_CFLAGS = \
22 -pedantic -Wall -Wextra -Wno-overlength-strings
23
24if DEBUG
25messenger_cli_CFLAGS += \
26 -O0 -D _DEBUG -ggdb3
27else
28messenger_cli_CFLAGS += \
29 -O2 -D NDEBUG
30endif
diff --git a/src/ui/Makefile.am b/src/ui/Makefile.am
deleted file mode 100644
index d998424..0000000
--- a/src/ui/Makefile.am
+++ /dev/null
@@ -1,17 +0,0 @@
1# This Makefile.am is in the public domain
2
3lib_LIBRARIES = libui.a
4
5libui_a_SOURCES = \
6 account_create_dialog.c account_create_dialog.h \
7 accounts.c accounts.h \
8 chat.h \
9 chat_open_dialog.c chat_open_dialog.h \
10 chats.c chats.h \
11 list_input.h \
12 lobby_create_dialog.c lobby_create_dialog.h \
13 lobby_enter_dialog.c lobby_enter_dialog.h \
14 members.c members.h \
15 messages.c messages.h \
16 text_input.h
17