blob: 54a500593e5724f558c74cdebce1461a08ceb5e9 (
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
|
bin_PROGRAMS = adept_notifier
#tdeinit_LTLIBRARIES = adept-notifier.la
noinst_HEADERS = app.h
adept_notifier_SOURCES = app.cpp
adept_notifier_LDADD = ../adept/libadept.la $(LIBAPT_FRONT_LIBS) $(LIBEPT_LIBS) $(TAGCOLL2_LIBS) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_KIO) $(LIB_TDEUI)
adept_notifier_LDFLAGS = -L/usr/lib/debug
INCLUDES = $(all_includes) $(LIBAPT_FRONT_CFLAGS) $(LIBEPT_CFLAGS) $(TAGCOLL2_CFLAGS) $(LIBWIBBLE_CFLAGS) -I$(srcdir)/.. -I..
KDE_CXXFLAGS = $(USE_EXCEPTIONS) -DQT_NO_ASCII_CAST -DQT_NO_CAST_ASCII
METASOURCES = AUTO
KDE_ICON = AUTO
rcdir = $(kde_datadir)/adept-notifier
#rc_DATA = adept-updaterui.rc
#shelldesktopdir = $(kde_appsdir)/System
xdg_apps_DATA = adept_notifier.desktop
autostart_DATA = adept_notifier_auto.desktop
autostartdir = /etc/xdg/autostart
messages: rc.cpp
$(EXTRACTRC) `find . -name \*.ui -o -name \*.rc` > rc.cpp
$(EXTRACTRC) `find . -name "*.rc"` >> rc.cpp
$(XGETTEXT) *.cpp -o $(podir)/adept_notifier.pot
|