summaryrefslogtreecommitdiffstats
path: root/kftpgrabber/src/Makefile.am
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-24 15:21:35 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-24 15:21:35 -0500
commit093ed975800ab1e5c0d73759f07fedf8d5aa2ca6 (patch)
treed625ba687b185a3984a410f56d9c2e0dade7b114 /kftpgrabber/src/Makefile.am
downloadkftpgrabber-093ed975800ab1e5c0d73759f07fedf8d5aa2ca6.tar.gz
kftpgrabber-093ed975800ab1e5c0d73759f07fedf8d5aa2ca6.zip
Initial import of kftpgrabber 0.8.1 from sources
Diffstat (limited to 'kftpgrabber/src/Makefile.am')
-rw-r--r--kftpgrabber/src/Makefile.am59
1 files changed, 59 insertions, 0 deletions
diff --git a/kftpgrabber/src/Makefile.am b/kftpgrabber/src/Makefile.am
new file mode 100644
index 0000000..9464ee5
--- /dev/null
+++ b/kftpgrabber/src/Makefile.am
@@ -0,0 +1,59 @@
+# 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 \
+ $(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_KDNSSD) -lkwalletclient $(LIBSSL) $(LIB_KPARTS) \
+ $(LIB_KIO) $(LIB_KDEUI)
+
+# 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