Dist Java stuff.
[libidn.git] / Makefile.am
bloba43300b3e03c02ec1a1b1bdd1d0b95fbaa1f20f5
1 ## Process this file with automake to produce Makefile.in
2 # Copyright (C) 2002, 2003 Simon Josefsson.
4 # This file is part of GNU Libidn.
6 # GNU Libidn is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU Lesser General Public License as
8 # published by the Free Software Foundation; either version 2.1 of
9 # the License, or (at your option) any later version.
11 # GNU Libidn is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU Lesser General Public License for more details.
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with GNU Libidn; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
20 DIST_SUBDIRS = reference
21 SUBDIRS = @GTKDOC@
23 ACLOCAL_AMFLAGS = -I .
25 EXTRA_DIST = FAQ libidn.pc.in iconv.m4 \
26         gen-stringprep-tables.pl rfc3454.txt \
27         gen-unicode-tables.pl UnicodeData-3.2.0.txt LineBreak-3.2.0.txt \
28         SpecialCasing-3.2.0.txt CaseFolding-3.2.0.txt \
29         CompositionExclusions-3.2.0.txt \
30         gdoc libidn.html libidn.ps libidn.pdf lgpl.texi \
31         libc/README libc/Makefile libc/Versions libc/configure \
32         libc/example.c libc/getaddrinfo.c libc/libc.patch libc/netdb.h \
33         contrib/README contrib/idn-python/README contrib/idn-python/Makefile \
34         contrib/idn-python/idn.c contrib/idn-python/test.py \
35         contrib/web/idn.php \
36         contrib/java/README contrib/java/autogen.sh \
37         contrib/java/configure.ac contrib/java/Makefile.am \
38         contrib/java/ExampleIDNA.java contrib/java/IDNA.java \
39         contrib/java/IDNA.c \
40         getopt.h getopt.c getopt1.c strdup.c memset.c
42 clean-local:
43         rm -f idn_cmd.c idn_cmd.h
45 # Library
47 pkgconfigdir = $(libdir)/pkgconfig
48 pkgconfig_DATA = libidn.pc
50 lib_LTLIBRARIES = libidn.la
52 include_HEADERS = stringprep.h stringprep_generic.h stringprep_nameprep.h \
53         stringprep_kerberos5.h stringprep_xmpp.h stringprep_plain.h \
54         stringprep_iscsi.h idna.h punycode.h
56 libidn_la_SOURCES = gunicomp.h gunidecomp.h internal.h \
57         stringprep.c nfkc.c version.c toutf8.c \
58         stringprep_generic.c profiles.c \
59         punycode.h punycode.c \
60         idna.h idna.c
61 libidn_la_LIBADD = @LTLIBOBJS@ @LTLIBICONV@
62 libidn_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
64 nfkc.c: gunicomp.h gunidecomp.h
66 gunicomp.h gunidecomp.h: gen-unicode-tables.pl UnicodeData-3.2.0.txt LineBreak-3.2.0.txt SpecialCasing-3.2.0.txt CaseFolding-3.2.0.txt CompositionExclusions-3.2.0.txt
67         $(PERL) $(srcdir)/gen-unicode-tables.pl -decomp 3.2 UnicodeData-3.2.0.txt LineBreak-3.2.0.txt SpecialCasing-3.2.0.txt CaseFolding-3.2.0.txt CompositionExclusions-3.2.0.txt
69 stringprep_generic.c: rfc3454.txt gen-stringprep-tables.pl
70         $(PERL) $(srcdir)/gen-stringprep-tables.pl rfc3454.txt
72 # Applications
74 bin_PROGRAMS = idn
76 idn_SOURCES = idn.c idn_cmd.c idn_cmd.h
77 idn_LDADD = @LIBOBJS@ libidn.la
79 idn.c: idn_cmd.c idn_cmd.h
81 idn_cmd.c idn_cmd.h: idn.ggo
82         -gengetopt --input $< --file-name idn_cmd
84 dist_man_MANS = idn.1
86 idn.1: idn.c
87         $(HELP2MAN) --name="Internationalized Domain Names command line tool" \
88                 --output=$@ $(top_builddir)/idn
90 # Test suite
92 tests = tst_stringprep tst_nfkc tst_punycode tst_idna
94 check_PROGRAMS = $(tests)
96 TESTS = $(tests)
98 INCLUDES = -I$(top_srcdir)
99 LDADD = libidn.la
101 noinst_PROGRAMS = $(tests) example example2 example3 example4
103 # Lisp interface
105 dist_lisp_LISP = punycode.el idna.el
106 ELCFILES=
107 elc-stamp:
109 # Documentation
111 info_TEXINFOS = libidn.texi
112 pdf_TEXINFOS = libidn.texi
113 ps_TEXINFOS = libidn.texi
115 libidn.html: libidn.texi
116         $(MAKEINFO) --html --no-split --number-sections $<
118 libidn_TEXINFOS = fdl.texi \
119         example.c.texi example2.c.texi example3.c.texi example4.c.texi \
120         libidn-api-version.texi libidn-api-stringprep.texi \
121         libidn-api-punycode.texi libidn-api-idna.texi
123 %.c.texi: %.c
124         sed -e 's/{/@{/g' -e 's/}/@}/g' < $< > $@
126 libidn-api-version.texi: version.c
127         $(PERL) $(srcdir)/gdoc -texinfo $^ > $@
129 libidn-api-stringprep.texi: stringprep.c nfkc.c toutf8.c reference/dummy.c
130         $(PERL) $(srcdir)/gdoc -texinfo $^ > $@
132 libidn-api-punycode.texi: punycode.c
133         $(PERL) $(srcdir)/gdoc -texinfo $^ > $@
135 libidn-api-idna.texi: idna.c
136         $(PERL) $(srcdir)/gdoc -texinfo $^ > $@
138 # Maintainer targets
140 .PHONY: ChangeLog
141 ChangeLog:
142         test ! -f .cvsusers || \
143         cvs2cl --FSF --usermap .cvsusers \
144                 -I "ChangeLog|.cvsignore|.cvsusers|autogen.sh|contrib"
146 indent:
147         indent $(SOURCES)
149 htmldir = ../www-$(PACKAGE)
150 tag = $(PACKAGE)-`echo $(VERSION) | sed 's/\./-/g'`
152 release:
153         cvs upd -p -r HEAD NEWS > /dev/null
154         if cvs upd -p -r $(tag) NEWS > /dev/null; then false else true; fi
155         rm -f ChangeLog && cvs upd ChangeLog
156         cvs commit
157         $(MAKE) distcheck
158         cvs commit -m "" ChangeLog
159         rm -f $(distdir).tar.gz.asc
160         gpg -a --sign --detach $(distdir).tar.gz
161         gpg --verify $(distdir).tar.gz.asc
162         scp $(distdir).tar.gz* gnudist.gnu.org:~alpha/gnu/$(PACKAGE)/
163         test -d $(htmldir) && cp -v $(PACKAGE).{ps,pdf,html} $(htmldir)/
164         test -d $(htmldir)/reference && \
165                 cp -v reference/*.html $(htmldir)/reference/
166         test -d $(htmldir) && cd $(htmldir) && cvs commit -m "Update." \
167                 $(PACKAGE).{ps,pdf,html} reference/*.html
168         cvs rtag $(tag) $(PACKAGE)