You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
873 B
32 lines
873 B
15 years ago
|
INCLUDES = $(all_includes)
|
||
|
METASOURCES = AUTO
|
||
|
|
||
12 years ago
|
SUBDIRS = . tdefile-plugin
|
||
15 years ago
|
|
||
|
kde_module_LTLIBRARIES = kio_trash.la
|
||
|
|
||
|
kio_trash_la_SOURCES = kio_trash.cpp
|
||
|
kio_trash_la_LIBADD = libtrashcommon.la $(LIB_KIO)
|
||
|
kio_trash_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -no-undefined
|
||
|
|
||
|
bin_PROGRAMS = ktrash
|
||
|
ktrash_SOURCES = ktrash.cpp
|
||
|
ktrash_LDADD = $(LIB_KIO)
|
||
12 years ago
|
ktrash_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
|
||
15 years ago
|
|
||
|
kde_services_DATA = trash.protocol
|
||
|
|
||
|
noinst_LTLIBRARIES = libtrashcommon.la
|
||
|
libtrashcommon_la_SOURCES = trashimpl.cpp
|
||
|
|
||
|
check_PROGRAMS = testtrash
|
||
|
testtrash_SOURCES = testtrash.cpp
|
||
|
testtrash_LDADD = libtrashcommon.la $(LIB_KIO)
|
||
|
testtrash_LDFLAGS = $(all_libraries)
|
||
|
|
||
|
TESTS = testtrash
|
||
|
|
||
|
messages:
|
||
12 years ago
|
$(XGETTEXT) `find . -name "*.cc" -o -name "*.cpp" -o -name "*.h"` -o $(podir)/tdeio_trash.pot
|
||
15 years ago
|
|