diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 37333bf25ad9a4c538250f5af2f9f1d666362883 (patch) | |
tree | c45e8df5b9efbffe07eb3d9340df7811c7e16943 /kpackage/Makefile.am | |
download | tdeadmin-37333bf25ad9a4c538250f5af2f9f1d666362883.tar.gz tdeadmin-37333bf25ad9a4c538250f5af2f9f1d666362883.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpackage/Makefile.am')
-rw-r--r-- | kpackage/Makefile.am | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/kpackage/Makefile.am b/kpackage/Makefile.am new file mode 100644 index 0000000..4f2791f --- /dev/null +++ b/kpackage/Makefile.am @@ -0,0 +1,36 @@ + +xdg_apps_DATA = kpackage.desktop + +# claim, which subdirectories you want to install +SUBDIRS = pics toolbar icon + +bin_PROGRAMS = kpackage + +# Which sources should be compiled for kpackage. +kpackage_SOURCES = kpackage.cpp managementWidget.cpp packageDisplay.cpp \ + packageProperties.cpp findf.cpp search.cpp \ + options.cpp pkgOptions.cpp \ + packageInfo.cpp cache.cpp main.cpp utils.cpp kio.cpp \ + debInterface.cpp debDpkgInterface.cpp debAptInterface.cpp \ + updateLoc.cpp procbuf.cpp kplview.cpp \ + pkgInterface.cpp rpmInterface.cpp kissInterface.cpp \ + slackInterface.cpp fbsdInterface.cpp gentooInterface.cpp \ + kpPty.cpp kpTerm.cpp + +kpackage_METASOURCES = AUTO + +# the library search path +kpackage_LDFLAGS = $(all_libraries) $(KDE_RPATH) + +# the libraries to link against. Be aware of the order. First the libraries, +# that depend on the following ones. +kpackage_LDADD = $(LIB_KFILE) $(LIBINTL) $(LIBZ) $(LIBUTEMPTER) + +INCLUDES = $(all_includes) + +messages: rc.cpp + $(XGETTEXT) *.cpp -o $(podir)/kpackage.pot + +rcdir = $(kde_datadir)/kpackage +rc_DATA = kpackageui.rc + |