blob: 4ec54292bd3e81b24bbe9df43b51788e5409dd0b (
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
|
INCLUDES = -I$(top_srcdir)/lib/interfaces -I$(top_srcdir)/lib/util $(all_includes)
kde_module_LTLIBRARIES = libkdevtipofday.la
libkdevtipofday_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN)
libkdevtipofday_la_LIBADD = $(top_builddir)/lib/libtdevelop.la
libkdevtipofday_la_SOURCES = tipofday_part.cpp
METASOURCES = AUTO
KDE_ICON = AUTO
servicedir = $(kde_servicesdir)
service_DATA = kdevtipofday.desktop
tip_DATA = tips
tipdir = $(kde_datadir)/kdevtipofday
rc_DATA = kdevpart_tipofday.rc
rcdir = $(kde_datadir)/kdevtipofday
messages: rc.cpp
$(PREPARETIPS) > tips.cc
$(XGETTEXT) *.cpp *.h tips.cc -o $(podir)/kdevtipofday.pot
rm -f tips.cc
|