commit 739f0621a7c491b74f061ea1fafd91e12d2cc5e6
parent a7cae3bf498397d1514aeeb6c3d0d48037385132
Author: TheJackiMonster <thejackimonster@gmail.com>
Date: Fri, 3 Feb 2023 22:44:51 +0100
Remove automake files
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat:
4 files changed, 1 insertion(+), 52 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -20,6 +20,7 @@ Makefile
.project
.settings/
.cache/
+.vscode/
# Binary files:
*.o
diff --git a/Makefile.am b/Makefile.am
@@ -1,5 +0,0 @@
-# This Makefile.am is in the public domain
-
-SUBDIRS = src
-
-ACLOCAL_AMFLAGS = -I m4
diff --git a/src/Makefile.am b/src/Makefile.am
@@ -1,30 +0,0 @@
-# This Makefile.am is in the public domain
-
-SUBDIRS = ui
-
-bin_PROGRAMS = messenger-cli
-
-messenger_cli_SOURCES = \
- application.c application.h \
- chat.c chat.h \
- util.c util.h \
- messenger_cli.c
-
-messenger_cli_LDADD = \
- ui/libui.a
-
-messenger_cli_LDFLAGS = \
- -lgnunetchat \
- -lgnunetutil \
- -lncurses
-
-messenger_cli_CFLAGS = \
- -pedantic -Wall -Wextra -Wno-overlength-strings
-
-if DEBUG
-messenger_cli_CFLAGS += \
- -O0 -D _DEBUG -ggdb3
-else
-messenger_cli_CFLAGS += \
- -O2 -D NDEBUG
-endif
diff --git a/src/ui/Makefile.am b/src/ui/Makefile.am
@@ -1,17 +0,0 @@
-# This Makefile.am is in the public domain
-
-lib_LIBRARIES = libui.a
-
-libui_a_SOURCES = \
- account_create_dialog.c account_create_dialog.h \
- accounts.c accounts.h \
- chat.h \
- chat_open_dialog.c chat_open_dialog.h \
- chats.c chats.h \
- list_input.h \
- lobby_create_dialog.c lobby_create_dialog.h \
- lobby_enter_dialog.c lobby_enter_dialog.h \
- members.c members.h \
- messages.c messages.h \
- text_input.h
-