~ubuntu-branches/ubuntu/precise/libdatrie/precise

« back to all changes in this revision

Viewing changes to datrie/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Theppitak Karoonboonyanan
  • Date: 2009-04-29 15:24:31 UTC
  • mfrom: (1.2.1 upstream) (3.1.1 karmic)
  • Revision ID: james.westby@ubuntu.com-20090429152431-8zmxgfvir3mrog08
* Use complete sentences in libdatrie1 long description. (Closes: #525806)
* New upstream release, fixing builds on non-GNU systems.
* Remove duplicated field "section" for libdatrie1 [lintian].

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
pkginclude_HEADERS =    \
4
4
        typedefs.h      \
5
5
        triedefs.h      \
6
 
        trie.h          \
7
 
        sb-trie.h
 
6
        alpha-map.h     \
 
7
        trie.h
8
8
 
9
 
EXTRA_DIST = libdatrie.def
 
9
EXTRA_DIST = libdatrie.map libdatrie.def
10
10
 
11
11
INCLUDES = -I$(top_srcdir)
12
12
 
25
25
        trie.h          \
26
26
        trie.c          \
27
27
        alpha-map.h     \
28
 
        alpha-map.c     \
29
 
        sb-trie.h       \
30
 
        sb-trie.c
 
28
        alpha-map-private.h     \
 
29
        alpha-map.c
 
30
 
 
31
if LD_HAS_VERSION_SCRIPT
 
32
EXPORTS_FLAGS = -Wl,-version-script -Wl,$(srcdir)/libdatrie.map
 
33
EXPORTS_DEPS = libdatrie.map
 
34
else
 
35
EXPORTS_FLAGS = -export-symbols $(srcdir)/libdatrie.def
 
36
EXPORTS_DEPS = libdatrie.def
 
37
endif
 
38
 
31
39
libdatrie_la_LDFLAGS =  -no-undefined \
32
40
        -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
33
 
        -export-symbols $(srcdir)/libdatrie.def
34
 
libdatrie_la_DEPENDENCIES = libdatrie.def
 
41
        $(EXPORTS_FLAGS)
 
42
libdatrie_la_DEPENDENCIES = $(EXPORTS_DEPS)
35
43