blob: ea057825f75d7a6058027fb885ab7743dd210fee (
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)/tde
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_TDEFILE) -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
|