blob: 6009d774a09e5c2855f27f4e8d5ce1624eee2678 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
INCLUDES= $(all_includes) $(KDE_INCLUDES)/tde $(KRB5_CFLAGS)
bin_PROGRAMS = kerberostray
kerberostray_SOURCES = main.cpp toplevel.cpp configdlgbase.ui configdlg.cpp
kerberostray_METASOURCES = AUTO
kerberostray_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor -ltdeldap $(KRB5_LIBS)
# LIB_TDEIO needed for KNotifyDialog
kerberostray_LDADD = $(LIB_TDEUI) $(LIB_TDEIO)
KDE_ICON = kerberostray
KDE_OPTIONS = nofinal
kerberostrayicondir = $(kde_datadir)/kerberostray/icons
kerberostrayicon_ICON = AUTO
messages:
$(XGETTEXT) $(kerberostray_SOURCES) -o $(podir)/kerberostray.pot
xdg_apps_DATA = kerberostray.desktop
autostart_DATA = kerberostray.desktop
autostartdir = $(datadir)/autostart
|