Add.
[libidn.git] / lib / Makefile.am
blobb1756bd34c084a555fb91cc5acde33a4d6f8963b
1 ## Process this file with automake to produce Makefile.in
2 # Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Simon Josefsson.
3 # Copyright (C) 2004 Free Software Foundation, Inc.
5 # This file is part of GNU Libidn.
7 # GNU Libidn is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU Lesser General Public License as
9 # published by the Free Software Foundation; either version 2.1 of
10 # the License, or (at your option) any later version.
12 # GNU Libidn is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU Lesser General Public License for more details.
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with GNU Libidn; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
21 EXTRA_DIST = gen-stringprep-tables.pl gen-unicode-tables.pl gen-tld-tables.pl
23 AM_CPPFLAGS = -I$(srcdir)/gl -Igl
24 DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
26 lib_LTLIBRARIES = libidn.la
28 idn_int = idn-int.h
30 BUILT_SOURCES = $(idn_int) gunibreak.h gunicomp.h gunidecomp.h rfc3454.c tlds.c
31 DISTCLEANFILES = $(idn_int)
32 include_HEADERS = stringprep.h idna.h punycode.h idn-free.h pr29.h
33 if TLD
34 include_HEADERS += tld.h
35 endif
36 nodist_include_HEADERS = $(idn_int)
38 idn-int.h:
39         if test -n "$(STDINT_H)"; then \
40                 cp gl/stdint.h idn-int.h; \
41         else \
42                 echo '#include <stdint.h>' > idn-int.h; \
43         fi
45 libidn_la_SOURCES = gunibreak.h gunicomp.h gunidecomp.h \
46         nfkc.c toutf8.c version.c \
47         stringprep.h.in stringprep.c rfc3454.c profiles.c \
48         punycode.h punycode.c \
49         idna.h idna.c \
50         pr29.h pr29.c \
51         idn-free.h idn-free.c \
52         strerror-idna.c strerror-pr29.c strerror-punycode.c \
53         strerror-stringprep.c strerror-tld.c
55 if TLD
56 libidn_la_SOURCES += tld.h tld.c tlds.c
57 endif
58 libidn_la_LIBADD = $(LTLIBICONV) $(LTLIBINTL) gl/libgnu.la
59 libidn_la_LDFLAGS = \
60         -export-symbols-regex '^(idn|pr29_|punycode_|stringprep|tld_).*' \
61         -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -no-undefined
63 nfkc.c: gunibreak.h gunicomp.h gunidecomp.h
65 SPEC = $(top_srcdir)/doc/specifications
67 gunibreak.h gunicomp.h gunidecomp.h: gen-unicode-tables.pl $(SPEC)/UnicodeData-3.2.0.txt $(SPEC)/LineBreak-3.2.0.txt $(SPEC)/SpecialCasing-3.2.0.txt $(SPEC)/CaseFolding-3.2.0.txt $(SPEC)/CompositionExclusions-3.2.0.txt
68         $(PERL) $(srcdir)/gen-unicode-tables.pl -decomp 3.2 $(SPEC)
70 rfc3454.c: gen-stringprep-tables.pl
71         $(PERL) $(srcdir)/gen-stringprep-tables.pl $(SPEC)/rfc3454.txt
73 tlds.c: gen-tld-tables.pl
74         $(PERL) $(srcdir)/gen-tld-tables.pl $(top_srcdir)/doc/tld/*.tld > tlds.c