blob: 80b31cbd39ece644217385354d3669846816d508 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
INCLUDES= $(all_includes) $(SDL_CFLAGS) -I$(kde_includes)/kde
METASOURCES = AUTO
kde_module_LTLIBRARIES = noatuntyler.la
noatuntyler_la_SOURCES = tyler.cpp
noatuntyler_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined
noatuntyler_la_LIBADD = $(LIB_KFILE) -lnoatun -lm
bin_PROGRAMS = noatuntyler.bin
noatuntyler_bin_SOURCES = main.cpp file.cpp compute.c display.c renderer.c
noatuntyler_bin_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
noatuntyler_bin_LDADD = $(LIB_KDECORE) -lm $(SDL_LIBS)
noatun_DATA = tyler.plugin tylerstates
noatundir = $(kde_datadir)/noatun
messages: rc.cpp
$(XGETTEXT) *.cpp *.h -o $(podir)/tyler.pot
|