blob: afafff09a062655c7578b0e763e9d2cf9f5d0be4 (
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) -I$(kde_includes)/kde
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_TDEUI) -lm -lnoatun $(SDL_LIBS)
noatun_DATA = nexscope.plugin
noatundir = $(kde_datadir)/noatun
messages: rc.cpp
$(XGETTEXT) *.cpp *.h -o $(podir)/nexscope.pot
|