~ubuntu-branches/debian/sid/geany-plugins/sid

« back to all changes in this revision

Viewing changes to spellcheck/src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-07-10 22:56:41 UTC
  • Revision ID: james.westby@ubuntu.com-20090710225641-xc1126t7pq0jmpos
Tags: upstream-0.17.1
ImportĀ upstreamĀ versionĀ 0.17.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include $(top_srcdir)/build/vars.build.mk
 
2
 
 
3
if ENABLE_SPELLCHECK
 
4
geanyplugins_LTLIBRARIES = spellcheck.la
 
5
else
 
6
EXTRA_LTLIBRARIES = spellcheck.la
 
7
endif
 
8
 
 
9
spellcheck_la_SOURCES = \
 
10
        scplugin.h \
 
11
        speller.h \
 
12
        gui.h \
 
13
        gui.c \
 
14
        speller.c \
 
15
        scplugin.c
 
16
 
 
17
spellcheck_la_CFLAGS = \
 
18
        $(AM_CFLAGS) \
 
19
        $(ENCHANT_CFLAGS)
 
20
 
 
21
spellcheck_la_LIBADD = \
 
22
        $(COMMONLIBS) \
 
23
        $(ENCHANT_LIBS)