blob: d182ff13c9effba14a077730d4de5fda83ecc2f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
INCLUDES= $(all_includes) $(SDL_CFLAGS)
METASOURCES = AUTO
kde_module_LTLIBRARIES = noatunnexscope.la
noatunnexscope_la_SOURCES = noatunplugin.cpp
noatunnexscope_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined
noatunnexscope_la_LIBADD = $(LIB_KFILE) -lnoatun
bin_PROGRAMS = nexscope.bin
#renderers.cpp must be first for enable-final
nexscope_bin_SOURCES = renderers.cpp bitmappool.cpp nex.cpp output.cpp input.cpp gui.cpp regionwidget.cpp convolve.c
nexscope_bin_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(SDL_LIBS)
nexscope_bin_LDADD = $(LIB_KDEUI) -lm -lnoatun $(SDL_LIBS)
noatun_DATA = nexscope.plugin
noatundir = $(kde_datadir)/noatun
messages: rc.cpp
$(XGETTEXT) *.cpp *.h -o $(podir)/nexscope.pot
|