blob: f0d4de331c7419aadc948cac63e5617d042af638 (
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
29
30
31
|
INCLUDES = -I$(kde_includes)/tdeio -I$(top_srcdir)/noatun/library -I$(kde_includes)/arts $(all_includes)
SUBDIRS = pics library app . modules
KDE_ICON = AUTO
xdg_apps_DATA = noatun.desktop
presetsdir = $(kde_datadir)/noatun/eq.preset
presets_DATA = preset.dance preset.jazz preset.metal preset.trance preset.zero
updatedir = $(kde_datadir)/tdeconf_update
update_DATA = noatun.upd
tdeconfdir = $(libdir)/tdeconf_update_bin
tdeconf_PROGRAMS = noatun20update
noatun20update_SOURCES = noatun20update.cpp
noatun20update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
noatun20update_LDADD = $(LIB_QT)
messages:
$(EXTRACTRC) `find . -name "*.rc" -o -name "*.ui"` > rc.cpp
$(XGETTEXT) rc.cpp `find . -o -name "*.cpp" -o -name "*.h"` -o $(podir)/noatun.pot
api:
$(mkinstalldirs) $(top_builddir)/noatun/apidocs/libnoatun
if test ! -x $(top_builddir)/noatun/apidocs/common; then \
$(LN_S) $(kde_libs_htmldir)/en/common $(top_builddir)/noatun/apidocs/common; \
fi
doxygen noatun.api
|