blob: e38a62809cfb7088dcfa26f771006702ff96d028 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
INCLUDES = $(all_includes)
METASOURCES = AUTO
# Install this plugin in the KDE modules directory
kde_module_LTLIBRARIES = kcm_autostart.la
kcm_autostart_la_SOURCES = autostart.cpp
kcm_autostart_la_LIBADD = $(LIB_TDEIO) $(LIB_TDEUI) $(LIB_QT) $(LIB_TDECORE)
kcm_autostart_la_LDFLAGS = -avoid-version -module -no-undefined \
$(all_libraries)
xdg_apps_DATA = autostart.desktop
messages: rc.cpp
$(EXTRACTRC) `find -name \*.ui -o -name \*.rc` > rc.cpp
$(XGETTEXT) *.cpp -o $(podir)/kcmautostart.pot
|