blob: 14e3a349f4d79d24dc735fee5143d22ea6c6a2f5 (
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/libkdevelop.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
|