Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
5191 | tsoots | 1 | pluginsdir = $(libdir)/scribus/plugins/gettext |
2 | |||
3 | SUBDIRS = |
||
4 | |||
5 | plugins_LTLIBRARIES = libdocim.la |
||
6 | |||
7 | INCLUDES = $(LIBFREETYPE_CFLAGS) $(all_includes) |
||
8 | |||
9 | libdocim_la_LDFLAGS = -version-info 0:0:0 |
||
10 | libdocim_la_METASOURCES = AUTO |
||
11 | libdocim_la_SOURCES = docim.cpp |
||
12 | |||
13 | EXTRA_DIST = docim.cpp docim.h |
||
14 | |||
15 | KDE_OPTIONS = qtonly |
||
16 | |||
17 | if COMPILE_DEBUG |
||
18 | linkflag = |
||
19 | else |
||
20 | linkflag = -s |
||
21 | endif |
||
22 | AM_LDFLAGS = $(linkflag) $(LIBFREETYPE_LIBS) |
||
23 | |||
24 | AM_CPPFLAGS = \ |
||
25 | -I$(top_builddir)/scribus \ |
||
26 | -DDOCDIR=\"$(datadir)/doc/scribus-$(VERSION)/\" \ |
||
27 | -DICONDIR=\"$(datadir)/scribus/icons/\" \ |
||
28 | -DTEMPLATEDIR=\"$(datadir)/scribus/templates/\" \ |
||
29 | -DLIBDIR=\"$(libdir)/scribus/\" \ |
||
30 | -DPLUGINDIR=\"$(libdir)/scribus/plugins/\" |
||
31 |