blob: d33d8852e974a0b9bd2c6a28a0d8a204d261d7d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
INCLUDES= $(all_includes)
bin_PROGRAMS = kpager
kpager_SOURCES = desktop.cpp kpager.cpp config.cpp windowdrag.cpp \
kpagerIface.skel main.cpp
kpager_METASOURCES = AUTO
kpager_LDFLAGS = $(all_libraries) $(KDE_RPATH)
kpager_LDADD = $(LIB_KDEUI)
KDE_ICON = kpager
xdg_apps_DATA = kpager.desktop
install-data-local: uninstall.desktop
$(mkinstalldirs) $(DESTDIR)$(kde_appsdir)/Utilities
$(INSTALL_DATA) $(srcdir)/uninstall.desktop $(DESTDIR)$(kde_appsdir)/Utilities/kpager.desktop
messages:
$(XGETTEXT) *.cpp *.h -o $(podir)/kpager.pot
|