blob: 453af8157239e0a41a64c35cf062d9d7083798d7 (
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_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
LDADD = $(LIB_KFILE) $(LIB_KDEPRINT)
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
|