blob: b34188010c0ed88fe20185628b275c913162a4a4 (
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
27
28
|
INCLUDES = $(all_includes)
AM_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_TQT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
LDADD = $(LIB_TDEFILE) $(LIB_TDEPRINT)
bin_PROGRAMS = kjots
kjots_SOURCES = main.cpp\
KJotsMain.cpp\
kjotsentry.cpp\
kjotsedit.cpp\
kjotsbookmarks.cpp\
confpagefont.ui\
confpagemisc.ui \
KJotsSettings.kcfgc
kjots_METASOURCES = AUTO
SUBDIRS = icons
xdg_apps_DATA = Kjots.desktop
kde_kcfg_DATA = kjots.kcfg
rcdir = $(kde_datadir)/kjots
rc_DATA = kjotsui.rc
messages: rc.cpp
$(XGETTEXT) *.cpp -o $(podir)/kjots.pot
|