blob: b7908aaaf2e0d7a17dc5ad5cfdf5a0218828fcdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# set the include path for X, qt and KDE
INCLUDES= $(all_includes)
bin_PROGRAMS = kodo
kodo_SOURCES = main.cpp kodometer.cpp kimagenumber.cpp
METASOURCES = AUTO
# the library search path.
kodo_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
kodo_LDADD = $(LIB_KDEUI)
messages:
$(XGETTEXT) $(kodo_SOURCES) -o $(podir)/kodo.pot
KDE_ICON = kodo
xdg_apps_DATA = kodo.desktop
pics_DATA = numbers.png
picsdir = $(kde_datadir)/kodo
|