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
780 B
32 lines
780 B
SUBDIRS= . kdedmodule entries mimetypes
|
|
|
|
INCLUDES = $(all_includes)
|
|
METASOURCES = AUTO
|
|
|
|
kde_module_LTLIBRARIES = kio_system.la
|
|
|
|
kio_system_la_SOURCES = dummy.cpp
|
|
kio_system_la_LIBADD = libkiosystem.la $(LIB_KIO)
|
|
kio_system_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -no-undefined
|
|
|
|
dummy.cpp:
|
|
echo > dummy.cpp
|
|
|
|
kde_services_DATA = system.protocol
|
|
|
|
noinst_LTLIBRARIES = libkiosystem.la
|
|
libkiosystem_la_SOURCES = kio_system.cpp systemimpl.cpp
|
|
|
|
check_PROGRAMS = testsystem
|
|
testsystem_SOURCES = testsystem.cpp
|
|
testsystem_LDADD = libkiosystem.la $(LIB_KIO)
|
|
testsystem_LDFLAGS = $(all_libraries)
|
|
|
|
## TODO in unsermake: TESTS = testsystem
|
|
check: testsystem
|
|
./testsystem
|
|
|
|
messages:
|
|
$(XGETTEXT) `find . -name "*.cc" -o -name "*.cpp" -o -name "*.h"` -o $(podir)/kio_system.pot
|
|
|