summaryrefslogtreecommitdiffstats
path: root/kftpgrabber
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2022-02-01 16:18:51 +0100
committerSlávek Banko <slavek.banko@axis.cz>2022-02-01 16:18:51 +0100
commitb45dcf33bb9b2017c663656baf7b5c0dd67e350c (patch)
treedcf25c74f92b10f9b4e83ecf984cc8cf29cb28fb /kftpgrabber
parentf762c878eae50498c6583bdaafb542475f13ccaf (diff)
downloadkftpgrabber-b45dcf33bb9b2017c663656baf7b5c0dd67e350c.tar.gz
kftpgrabber-b45dcf33bb9b2017c663656baf7b5c0dd67e350c.zip
Drop automake build support.
Rework the README and INSTALL files. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'kftpgrabber')
-rw-r--r--kftpgrabber/Makefile.am12
-rw-r--r--kftpgrabber/NEWS0
-rw-r--r--kftpgrabber/configure.in.in111
-rw-r--r--kftpgrabber/src/Makefile.am61
-rw-r--r--kftpgrabber/src/engine/Makefile.am13
-rw-r--r--kftpgrabber/src/misc/Makefile.am25
-rw-r--r--kftpgrabber/src/misc/customcommands/Makefile.am18
-rw-r--r--kftpgrabber/src/misc/interfaces/Makefile.am17
-rw-r--r--kftpgrabber/src/misc/libs/Makefile.am3
-rw-r--r--kftpgrabber/src/misc/libs/ssh/Makefile.am8
-rw-r--r--kftpgrabber/src/misc/plugins/Makefile.am3
-rw-r--r--kftpgrabber/src/misc/plugins/bookmarkimport/Makefile.am3
-rw-r--r--kftpgrabber/src/misc/plugins/bookmarkimport/filezilla3/Makefile.am16
-rw-r--r--kftpgrabber/src/misc/plugins/bookmarkimport/gftp/Makefile.am16
-rw-r--r--kftpgrabber/src/misc/plugins/bookmarkimport/kftp/Makefile.am16
-rw-r--r--kftpgrabber/src/misc/plugins/bookmarkimport/ncftp/Makefile.am16
-rw-r--r--kftpgrabber/src/ui/Makefile.am18
-rw-r--r--kftpgrabber/src/widgets/Makefile.am30
-rw-r--r--kftpgrabber/src/widgets/bookmarks/Makefile.am14
-rw-r--r--kftpgrabber/src/widgets/browser/Makefile.am15
-rw-r--r--kftpgrabber/src/widgets/queueview/Makefile.am15
21 files changed, 0 insertions, 430 deletions
diff --git a/kftpgrabber/Makefile.am b/kftpgrabber/Makefile.am
deleted file mode 100644
index 35c85b3..0000000
--- a/kftpgrabber/Makefile.am
+++ /dev/null
@@ -1,12 +0,0 @@
-SUBDIRS = src
-EXTRA_DIST = AUTHORS COPYING ChangeLog INSTALL README TODO
-
-messages: rc.cpp
- $(EXTRACTRC) `find . -name "*.rc" -o -name "*.ui" -o -name "*.kcfg"` > rc.cpp
- LIST=`find . -name \*.h -o -name \*.hh -o -name \*.H -o -name \*.hxx -o -name \*.hpp -o -name \*.cpp -o -name \*.cc -o -name *.cxx -o -name \*.ecpp -o -name \*.C`; \
- if test -n "$$LIST"; then \
- $(XGETTEXT) $$LIST -o $(podir)/kftpgrabber.pot; \
- fi
- rm -f rc.cpp
-
-
diff --git a/kftpgrabber/NEWS b/kftpgrabber/NEWS
deleted file mode 100644
index e69de29..0000000
--- a/kftpgrabber/NEWS
+++ /dev/null
diff --git a/kftpgrabber/configure.in.in b/kftpgrabber/configure.in.in
deleted file mode 100644
index 8e59ffd..0000000
--- a/kftpgrabber/configure.in.in
+++ /dev/null
@@ -1,111 +0,0 @@
-#MIN_CONFIG(3.2.0)
-
-AM_INIT_AUTOMAKE(kftpgrabber, 0.8.0)
-
-dnl Check for the 3.4 kde version (for tdednssd)
-AC_DEFUN([CHECK_TDEDNSSD],
-[
- AC_MSG_CHECKING(for TDEDNSSD support)
- AC_CACHE_VAL(ac_cv_tdednssd,
- [
- AC_LANG_SAVE
- AC_LANG_CPLUSPLUS
-
- save_CXXFLAGS="$CXXFLAGS"
-
- CXXFLAGS="$CXXFLAGS $all_includes"
-
- AC_TRY_LINK([
- #include <tdeversion.h>
- ],
- [
- #if ! KDE_IS_VERSION(3,4,0)
- KDE_choke me
- #endif
- ],
- ac_cv_tdednssd=yes,
- ac_cv_tdednssd=no
- )
- CXXFLAGS="$save_CXXFLAGS"
- AC_LANG_RESTORE
- ])
-
- if test "$ac_cv_tdednssd" = "yes"; then
- AC_MSG_RESULT(yes)
- LIB_TDEDNSSD="-ltdednssd"
- else
- AC_MSG_RESULT(no)
- LIB_TDEDNSSD=""
- fi
-
- AC_SUBST(LIB_TDEDNSSD)
-])
-
-
-dnl Check for the correct kde version
-AC_DEFUN([CHECK_KDEVERSION],
-[
- AC_MSG_CHECKING(for KDE >= 3.3)
- AC_CACHE_VAL(ac_cv_kde33,
- [
- AC_LANG_SAVE
- AC_LANG_CPLUSPLUS
-
- save_CXXFLAGS="$CXXFLAGS"
-
- CXXFLAGS="$CXXFLAGS $all_includes"
-
- AC_TRY_LINK([
- #include <tdeversion.h>
- ],
- [
- #if ! KDE_IS_VERSION(3,3,0)
- KDE_choke me
- #endif
- ],
- ac_cv_kde33=yes,
- ac_cv_kde33=no
- )
- CXXFLAGS="$save_CXXFLAGS"
- AC_LANG_RESTORE
- ])
-
- if test "$ac_cv_kde33" = "yes"; then
- AC_MSG_RESULT(yes)
- else
- AC_MSG_RESULT(no)
-
- echo ""
- echo " * You don't have KDE 3.3 or later installed on your system."
- echo " * KFTPGrabber requires at least KDE 3.3 or later."
- echo ""
- exit 1
- fi
-])
-
-dnl Stuff required for libssh
-AC_CHECK_LIB([resolv],[gethostbyname])
-AC_CHECK_LIB([nsl],[gethostbyname])
-
-AC_HEADER_STDC
-AC_HEADER_TIME
-AC_CHECK_HEADERS([fcntl.h netdb.h netinet/in.h stdlib.h string.h sys/socket.h \
-sys/time.h termios.h unistd.h openssl/aes.h openssl/blowfish.h zlib.h \
-sys/poll.h ])
-
-AC_FUNC_MALLOC
-AC_FUNC_MEMCMP
-AC_FUNC_REALLOC
-AC_FUNC_SELECT_ARGTYPES
-AC_TYPE_SIGNAL
-AC_FUNC_VPRINTF
-AC_CHECK_FUNCS([endpwent gethostbyaddr gethostbyname getpass memmove memset \
- select socket strchr strdup strerror strstr poll])
-
-dnl Check for some stuff
-KDE_CHECK_SSL
-CHECK_KDEVERSION
-CHECK_TDEDNSSD
-
-AC_C_BIGENDIAN
-AC_CHECK_KDEMAXPATHLEN
diff --git a/kftpgrabber/src/Makefile.am b/kftpgrabber/src/Makefile.am
deleted file mode 100644
index 690f969..0000000
--- a/kftpgrabber/src/Makefile.am
+++ /dev/null
@@ -1,61 +0,0 @@
-# set the include path for X, qt and KDE
-INCLUDES = -I$(srcdir)/misc \
- -I$(srcdir)/ui -I./ui \
- -I$(srcdir)/widgets \
- -I$(srcdir)/widgets/browser \
- -I$(srcdir)/widgets/filtereditor \
- -I$(srcdir)/widgets/queueview \
- -I$(top_builddir) \
- -I$(top_builddir)/kftpgrabber/src \
- $(all_includes)
-
-# these are the headers for your project
-noinst_HEADERS = checksumverifier.h kftpbookmarks.h kftpqueue.h \
- kftpbookmarks.h mainwindow.h kftpqueue.h mainactions.h kftpbookmarkaction.h \
- kftpqueueprocessor.h kftpsession.h kftpqueueconverter.h kftptransfer.h \
- kftptransferfile.h kftptransferdir.h kftpfileexistsactions.h \
- statistics.h site.h queueobject.h queuegroup.h \
- directoryscanner.h
-
-# let automoc handle all of the meta source files (moc)
-METASOURCES = AUTO
-
-KDE_ICON = kftpgrabber
-
-#########################################################################
-# APPLICATION SECTION
-#########################################################################
-# this is the program that gets installed. it's name is used for all
-# of the other Makefile.am variables
-bin_PROGRAMS = kftpgrabber
-
-# the application source, library search path, and link libraries
-kftpgrabber_SOURCES = main.cpp mainwindow.cpp checksumverifier.cpp \
- kftpbookmarks.cpp kftpqueue.cpp mainactions.cpp kftpbookmarkaction.cpp \
- kftpqueueprocessor.cpp kftpsession.cpp kftpqueueconverter.cpp kftptransfer.cpp \
- kftptransferfile.cpp kftptransferdir.cpp \
- kftpfileexistsactions.cpp statistics.cpp site.cpp queueobject.cpp \
- queuegroup.cpp directoryscanner.cpp
-kftpgrabber_LDFLAGS = $(KDE_RPATH) $(all_libraries)
-kftpgrabber_LDADD = \
- widgets/bookmarks/libbookmarkwidgets.a \
- widgets/browser/libbrowser.a \
- widgets/queueview/libqueueviewwidget.a \
- widgets/libwidgets.a \
- engine/libengine.a \
- misc/libkftpgrabbercore.a \
- misc/customcommands/libcustomcommands.a \
- ui/libui.a \
- misc/interfaces/libkftpinterfaces.la \
- misc/libs/ssh/libssh.a \
- $(LIB_TDEDNSSD) -ltdewalletclient $(LIBSSL) $(LIB_TDEPARTS) \
- $(LIB_TDEIO) $(LIB_TDEUI) $(LIB_TDECORE) $(LIB_TQT) -lz
-
-# this is where the desktop file will go
-xdg_apps_DATA = kftpgrabber.desktop
-
-# this is where the shell's XML-GUI resource file goes
-shellrcdir = $(kde_datadir)/kftpgrabber
-shellrc_DATA = kftpgrabberui.rc kftpgrabber-logo.png kftpgrabber-bi-wizard.png
-
-SUBDIRS = misc engine ui widgets
diff --git a/kftpgrabber/src/engine/Makefile.am b/kftpgrabber/src/engine/Makefile.am
deleted file mode 100644
index aeb4134..0000000
--- a/kftpgrabber/src/engine/Makefile.am
+++ /dev/null
@@ -1,13 +0,0 @@
-INCLUDES = -I.. -I$(srcdir)/.. \
- -I../misc -I$(srcdir)/../misc \
- -I$(top_builddir) \
- -I$(top_builddir)/kftpgrabber/src \
- $(all_includes)
-METASOURCES = AUTO
-noinst_LIBRARIES = libengine.a
-noinst_HEADERS = socket.h thread.h directorylisting.h commands.h event.h \
- ftpsocket.h ftpdirectoryparser.h cache.h sftpsocket.h connectionretry.h \
- speedlimiter.h ssl.h
-libengine_a_SOURCES = socket.cpp thread.cpp directorylisting.cpp commands.cpp \
- event.cpp ftpsocket.cpp ftpdirectoryparser.cpp cache.cpp sftpsocket.cpp \
- connectionretry.cpp speedlimiter.cpp ssl.cpp
diff --git a/kftpgrabber/src/misc/Makefile.am b/kftpgrabber/src/misc/Makefile.am
deleted file mode 100644
index 7da83f8..0000000
--- a/kftpgrabber/src/misc/Makefile.am
+++ /dev/null
@@ -1,25 +0,0 @@
-INCLUDES = -I$(srcdir)/.. \
- -I$(srcdir)/../engine \
- -I$(srcdir)/../misc/interfaces \
- -I$(top_builddir) \
- -I$(top_builddir)/kftpgrabber/src \
- $(all_includes)
-
-METASOURCES = AUTO
-noinst_LIBRARIES = libkftpgrabbercore.a
-libkftpgrabbercore_a_SOURCES = misc.cpp kftpotpgenerator.cpp \
- kftpapi.cpp desencryptor.cpp kftpwalletconnection.cpp \
- kftppluginmanager.cpp \
- kftpzeroconf.cpp kftpconfig.kcfgc configbase.cpp filter.cpp \
- filterwidgethandler.cpp
-
-libkftpgrabbercore_a_LIBADD = interfaces/libkftpinterfaces.la customcommands/libcustomcommands.a
-
-kde_kcfg_DATA = kftpgrabber.kcfg
-
-noinst_HEADERS = misc.h kftpotpgenerator.h kftpapi.h desencryptor.h \
- kftpwalletconnection.h kftppluginmanager.h kftpzeroconf.h \
- configbase.h filter.h filterwidgethandler.h
-
-SUBDIRS = interfaces plugins libs customcommands
-
diff --git a/kftpgrabber/src/misc/customcommands/Makefile.am b/kftpgrabber/src/misc/customcommands/Makefile.am
deleted file mode 100644
index 6edf0c6..0000000
--- a/kftpgrabber/src/misc/customcommands/Makefile.am
+++ /dev/null
@@ -1,18 +0,0 @@
-INCLUDES = -I$(srcdir)/../.. \
- -I$(srcdir)/.. \
- -I$(srcdir)/../../engine \
- -I$(srcdir)/../../misc/interfaces \
- -I$(srcdir)/../../widgets \
- -I$(top_builddir) \
- -I$(top_builddir)/kftpgrabber/src \
- $(all_includes)
-METASOURCES = AUTO
-noinst_LIBRARIES = libcustomcommands.a
-noinst_HEADERS = handlers.h entry.h manager.h parameterentrydialog.h \
- responsedialog.h
-libcustomcommands_a_SOURCES = handlers.cpp entry.cpp manager.cpp \
- parameterentrydialog.cpp responsedialog.cpp
-
-shellrcdir = $(kde_datadir)/kftpgrabber
-shellrc_DATA = commands.xml
-
diff --git a/kftpgrabber/src/misc/interfaces/Makefile.am b/kftpgrabber/src/misc/interfaces/Makefile.am
deleted file mode 100644
index a062aa2..0000000
--- a/kftpgrabber/src/misc/interfaces/Makefile.am
+++ /dev/null
@@ -1,17 +0,0 @@
-INCLUDES = -I$(top_srcdir)/kftpgrabber/src/ftp \
- -I$(top_srcdir)/kftpgrabber/src/qsa \
- -I$(top_builddir) \
- -I$(top_builddir)/kftpgrabber/src \
- $(all_includes)
-
-METASOURCES = AUTO
-
-lib_LTLIBRARIES = libkftpinterfaces.la
-libkftpinterfaces_la_SOURCES = kftpbookmarkimportplugin.cpp
-libkftpinterfaces_la_LDFLAGS = $(all_libraries) -version-info 0:0:0 -no-undefined
-libkftpinterfaces_la_LIBADD = $(LIB_TQT) $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDEPARTS)
-
-kftpgrabberincludedir = $(includedir)/kftpgrabber
-kftpgrabberinclude_HEADERS = kftpbookmarkimportplugin.h
-
-kde_servicetypes_DATA = kftpbookmarkimportplugin.desktop
diff --git a/kftpgrabber/src/misc/libs/Makefile.am b/kftpgrabber/src/misc/libs/Makefile.am
deleted file mode 100644
index b4be6a2..0000000
--- a/kftpgrabber/src/misc/libs/Makefile.am
+++ /dev/null
@@ -1,3 +0,0 @@
-INCLUDES = $(all_includes)
-METASOURCES = AUTO
-SUBDIRS = ssh
diff --git a/kftpgrabber/src/misc/libs/ssh/Makefile.am b/kftpgrabber/src/misc/libs/ssh/Makefile.am
deleted file mode 100644
index 91a0031..0000000
--- a/kftpgrabber/src/misc/libs/ssh/Makefile.am
+++ /dev/null
@@ -1,8 +0,0 @@
-INCLUDES = $(all_includes)
-METASOURCES = AUTO
-noinst_LIBRARIES = libssh.a
-libssh_a_SOURCES = auth.c base64.c buffer.c channels.c client.c connect.c\
- crypt.c dh.c error.c gzip.c kex.c keyfiles.c keys.c misc.c options.c\
- packet.c sftp.c string.c wrapper.c
-noinst_HEADERS = crypto.h libssh.h sftp.h ssh2.h
-AM_CFLAGS = -w
diff --git a/kftpgrabber/src/misc/plugins/Makefile.am b/kftpgrabber/src/misc/plugins/Makefile.am
deleted file mode 100644
index 0a48ec2..0000000
--- a/kftpgrabber/src/misc/plugins/Makefile.am
+++ /dev/null
@@ -1,3 +0,0 @@
-INCLUDES = $(all_includes)
-METASOURCES = AUTO
-SUBDIRS = bookmarkimport
diff --git a/kftpgrabber/src/misc/plugins/bookmarkimport/Makefile.am b/kftpgrabber/src/misc/plugins/bookmarkimport/Makefile.am
deleted file mode 100644
index 54d0366..0000000
--- a/kftpgrabber/src/misc/plugins/bookmarkimport/Makefile.am
+++ /dev/null
@@ -1,3 +0,0 @@
-INCLUDES = $(all_includes)
-METASOURCES = AUTO
-SUBDIRS = gftp ncftp kftp filezilla3
diff --git a/kftpgrabber/src/misc/plugins/bookmarkimport/filezilla3/Makefile.am b/kftpgrabber/src/misc/plugins/bookmarkimport/filezilla3/Makefile.am
deleted file mode 100644
index 339062e..0000000
--- a/kftpgrabber/src/misc/plugins/bookmarkimport/filezilla3/Makefile.am
+++ /dev/null
@@ -1,16 +0,0 @@
-INCLUDES = -I$(srcdir)/../../../interfaces \
- -I$(top_builddir) \
- -I$(top_builddir)/kftpgrabber/src \
- $(all_includes)
-METASOURCES = AUTO
-
-kde_module_LTLIBRARIES = kftpimportplugin_filezilla3.la
-kftpimportplugin_filezilla3_la_SOURCES = kftpimportfz3plugin.cpp
-kftpimportplugin_filezilla3_la_LIBADD = $(LIB_TQT) $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDEPARTS) ../../../interfaces/libkftpinterfaces.la
-kftpimportplugin_filezilla3_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
-
-kde_services_DATA = kftpimportplugin_filezilla3.desktop
-noinst_HEADERS = kftpimportfz3plugin.h
-
-pluginsdir = $(kde_datadir)/kftpimportplugin_filezilla3
-
diff --git a/kftpgrabber/src/misc/plugins/bookmarkimport/gftp/Makefile.am b/kftpgrabber/src/misc/plugins/bookmarkimport/gftp/Makefile.am
deleted file mode 100644
index 212e905..0000000
--- a/kftpgrabber/src/misc/plugins/bookmarkimport/gftp/Makefile.am
+++ /dev/null
@@ -1,16 +0,0 @@
-INCLUDES = -I$(srcdir)/../../../interfaces \
- -I$(top_builddir) \
- -I$(top_builddir)/kftpgrabber/src \
- $(all_includes)
-METASOURCES = AUTO
-
-kde_module_LTLIBRARIES = kftpimportplugin_gftp.la
-kftpimportplugin_gftp_la_SOURCES = kftpimportgftpplugin.cpp
-kftpimportplugin_gftp_la_LIBADD = $(LIB_TQT) $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDEPARTS) ../../../interfaces/libkftpinterfaces.la
-kftpimportplugin_gftp_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
-
-kde_services_DATA = kftpimportplugin_gftp.desktop
-noinst_HEADERS = kftpimportgftpplugin.h
-
-pluginsdir = $(kde_datadir)/kftpimportplugin_gftp
-
diff --git a/kftpgrabber/src/misc/plugins/bookmarkimport/kftp/Makefile.am b/kftpgrabber/src/misc/plugins/bookmarkimport/kftp/Makefile.am
deleted file mode 100644
index 2cd034f..0000000
--- a/kftpgrabber/src/misc/plugins/bookmarkimport/kftp/Makefile.am
+++ /dev/null
@@ -1,16 +0,0 @@
-INCLUDES = -I$(srcdir)/../../../interfaces \
- -I$(top_builddir) \
- -I$(top_builddir)/kftpgrabber/src \
- $(all_includes)
-METASOURCES = AUTO
-
-kde_module_LTLIBRARIES = kftpimportplugin_kftp.la
-kftpimportplugin_kftp_la_SOURCES = kftpimportkftpplugin.cpp
-kftpimportplugin_kftp_la_LIBADD = $(LIB_TQT) $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDEPARTS) ../../../interfaces/libkftpinterfaces.la
-kftpimportplugin_kftp_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
-
-kde_services_DATA = kftpimportplugin_kftp.desktop
-noinst_HEADERS = kftpimportkftpplugin.h
-
-pluginsdir = $(kde_datadir)/kftpimportplugin_kftp
-
diff --git a/kftpgrabber/src/misc/plugins/bookmarkimport/ncftp/Makefile.am b/kftpgrabber/src/misc/plugins/bookmarkimport/ncftp/Makefile.am
deleted file mode 100644
index 806d490..0000000
--- a/kftpgrabber/src/misc/plugins/bookmarkimport/ncftp/Makefile.am
+++ /dev/null
@@ -1,16 +0,0 @@
-INCLUDES = -I$(srcdir)/../../../interfaces \
- -I$(top_builddir) \
- -I$(top_builddir)/kftpgrabber/src \
- $(all_includes)
-METASOURCES = AUTO
-
-kde_module_LTLIBRARIES = kftpimportplugin_ncftp.la
-kftpimportplugin_ncftp_la_SOURCES = kftpimportncftpplugin.cpp
-kftpimportplugin_ncftp_la_LIBADD = $(LIB_TQT) $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDEPARTS) ../../../interfaces/libkftpinterfaces.la
-kftpimportplugin_ncftp_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
-
-kde_services_DATA = kftpimportplugin_ncftp.desktop
-noinst_HEADERS = kftpimportncftpplugin.h
-
-pluginsdir = $(kde_datadir)/kftpimportplugin_ncftp
-
diff --git a/kftpgrabber/src/ui/Makefile.am b/kftpgrabber/src/ui/Makefile.am
deleted file mode 100644
index 845daef..0000000
--- a/kftpgrabber/src/ui/Makefile.am
+++ /dev/null
@@ -1,18 +0,0 @@
-INCLUDES = -I$(top_srcdir) \
- -I$(srcdir)/.. \
- -I$(srcdir)/../widgets \
- -I$(srcdir)/../widgets/queueview \
- -I$(top_builddir) \
- -I$(top_builddir)/kftpgrabber/src \
- $(all_includes)
-
-METASOURCES = AUTO
-noinst_LIBRARIES = libui.a
-
-libui_a_SOURCES = bookmark_properties.ui kftpfilteraddpatternlayout.ui \
- kftpquickconnectlayout.ui kftpqueueeditorlayout.ui kftpsearchlayout.ui \
- kftpbookmarkimportlayout.ui kftpbookmarkeditortlswidget.ui config_general.ui \
- config_transfers.ui config_log.ui config_display.ui config_filters.ui \
- foobar.cpp checksum_verifier.ui
-
-noinst_HEADERS = foobar.h
diff --git a/kftpgrabber/src/widgets/Makefile.am b/kftpgrabber/src/widgets/Makefile.am
deleted file mode 100644
index 1dec2ff..0000000
--- a/kftpgrabber/src/widgets/Makefile.am
+++ /dev/null
@@ -1,30 +0,0 @@
-INCLUDES = -I$(srcdir)/.. \
- -I$(srcdir)/../engine \
- -I$(srcdir)/../misc \
- -I$(srcdir)/../widgets/browser \
- -I.. \
- -I../ui \
- -I$(top_builddir) \
- -I$(top_builddir)/kftpgrabber/src \
- $(all_includes)
-
-METASOURCES = AUTO
-
-noinst_LTLIBRARIES =
-noinst_LIBRARIES = libwidgets.a
-libwidgets_a_SOURCES = logview.cpp kftpselectserverdialog.cpp \
- kftpselectserverdialog.h kftpserverlineedit.cpp kftpserverlineedit.h listview.cpp \
- quickconnect.cpp systemtray.cpp balloon.cpp searchdialog.cpp \
- kftpzeroconflistview.cpp trafficgraph.cpp kftptabwidget.cpp failedtransfers.cpp \
- listviewitem.cpp sidebar.cpp multitabbar.cpp configdialog.cpp \
- configfilter.cpp verifier.cpp filtereditor.cpp widgetlister.cpp overlaywidget.cpp \
- popupmessage.cpp
-
-SUBDIRS = queueview browser bookmarks
-
-noinst_HEADERS = listview.h quickconnect.h systemtray.h searchdialog.h \
- kftpzeroconflistview.h trafficgraph.h kftptabwidget.h \
- logview.h failedtransfers.h listviewitem.h sidebar.h multitabbar.h \
- multitabbar_p.h configdialog.h configfilter.h verifier.h balloon.h filtereditor.h \
- widgetlister.h overlaywidget.h popupmessage.h
-
diff --git a/kftpgrabber/src/widgets/bookmarks/Makefile.am b/kftpgrabber/src/widgets/bookmarks/Makefile.am
deleted file mode 100644
index d47c128..0000000
--- a/kftpgrabber/src/widgets/bookmarks/Makefile.am
+++ /dev/null
@@ -1,14 +0,0 @@
-INCLUDES = -I$(top_builddir)/kftpgrabber/src \
- -I$(srcdir)/../.. \
- -I$(srcdir)/../../engine \
- -I$(srcdir)/../../misc \
- -I$(srcdir)/../../widgets \
- -I$(srcdir)/../../widgets/browser \
- -I$(srcdir)/../../ui \
- -I$(top_builddir)/kftpgrabber/src/ui \
- -I$(top_builddir) \
- $(all_includes)
-METASOURCES = AUTO
-noinst_LIBRARIES = libbookmarkwidgets.a
-noinst_HEADERS = editor.h editortls.h listview.h importwizard.h sidebar.h
-libbookmarkwidgets_a_SOURCES = editor.cpp editortls.cpp listview.cpp importwizard.cpp sidebar.cpp
diff --git a/kftpgrabber/src/widgets/browser/Makefile.am b/kftpgrabber/src/widgets/browser/Makefile.am
deleted file mode 100644
index 0522960..0000000
--- a/kftpgrabber/src/widgets/browser/Makefile.am
+++ /dev/null
@@ -1,15 +0,0 @@
-INCLUDES = -I$(srcdir)/../.. -I../.. \
- -I$(srcdir)/../../engine \
- -I$(srcdir)/../../misc \
- -I$(srcdir)/.. \
- -I$(srcdir)/../../ui -I../../ui \
- -I$(top_builddir) \
- -I$(top_builddir)/kftpgrabber/src \
- $(all_includes)
-
-METASOURCES = AUTO
-noinst_LIBRARIES = libbrowser.a
-noinst_HEADERS = view.h actions.h treeview.h propsplugin.h \
- filterwidget.h detailsview.h locationnavigator.h dirlister.h
-libbrowser_a_SOURCES = view.cpp actions.cpp treeview.cpp \
- propsplugin.cpp filterwidget.cpp detailsview.cpp locationnavigator.cpp dirlister.cpp
diff --git a/kftpgrabber/src/widgets/queueview/Makefile.am b/kftpgrabber/src/widgets/queueview/Makefile.am
deleted file mode 100644
index e34c5bd..0000000
--- a/kftpgrabber/src/widgets/queueview/Makefile.am
+++ /dev/null
@@ -1,15 +0,0 @@
-INCLUDES = -I$(srcdir)/../.. \
- -I$(srcdir)/../../engine \
- -I$(srcdir)/../../misc \
- -I$(srcdir)/../../ui -I../../ui\
- -I$(srcdir)/.. \
- -I$(srcdir)/../browser \
- -I$(top_builddir) \
- -I$(top_builddir)/kftpgrabber/src \
- $(all_includes)
-
-METASOURCES = AUTO
-noinst_LIBRARIES = libqueueviewwidget.a
-libqueueviewwidget_a_SOURCES = queueeditor.cpp queueview.cpp threadview.cpp
-
-noinst_HEADERS = queueeditor.h queueview.h threadview.h