Add.
[gsasl.git] / Makefile.am
blob22f6f6cd1c47a26a5449be0cd2268103bad3c7b7
1 ## Process this file with automake to produce Makefile.in
2 # Copyright (C) 2002, 2003, 2004, 2005, 2006 Simon Josefsson.
4 # This file is part of GNU SASL.
6 # GNU SASL is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
11 # GNU SASL 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 General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with GNU SASL; if not, write to the Free Software Foundation,
18 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 SUBDIRS = po gl lib src examples tests doc
22 ACLOCAL_AMFLAGS = -I m4 -I gl/m4
23 DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --disable-obsolete
25 # Maintainer targets
27 update-po: refresh-po
28         cvs add `ls po/*.po | grep -v quot.po` || true && \
29         cvs commit -m "Sync with TP." po/LINGUAS `ls po/*.po | grep -v quot.po`
30         $(MAKE) -C lib update-po
32 ChangeLog:
33         cvs2cl --fsf --FSF --usermap .cvsusers -I ChangeLog -I .cvs \
34                 -I autogen.sh -I doc/specification -I lib/
35         cat .cvscopying >> ChangeLog
37 htmldir = ../www-$(PACKAGE)
38 tag = $(PACKAGE)-`echo $(VERSION) | sed 's/\./-/g'`
40 release:
41         cd lib && make release
42         cvs upd -p -r HEAD NEWS > /dev/null
43         if cvs upd -p -r $(tag) NEWS > /dev/null; then false else true; fi
44         rm -f ChangeLog && cvs upd ChangeLog
45         cvs commit
46         rm -f ChangeLog
47         $(MAKE) ChangeLog distcheck
48         cvs commit -m "" ChangeLog
49         cvs rtag $(tag) $(PACKAGE)
50         gnupload --to alpha.gnu.org:gsasl $(distdir).tar.gz
51         cd doc && env MAKEINFO="makeinfo -I ../examples" \
52                       TEXI2DVI="texi2dvi -I ../examples" \
53                 ../gendocs.sh --html "--css-include=texinfo.css" \
54                 -o ../$(htmldir)/manual/ $(PACKAGE) "GNU SASL"
55         cp -v $(distdir).tar.gz{,.sig} $(htmldir)/releases/
56         cp -v doc/reference/html/*.{html,png,devhelp,css} $(htmldir)/reference/
57         cd doc/doxygen && doxygen && cd ../.. && cp -v doc/doxygen/html/* $(htmldir)/doxygen/ && cd doc/doxygen/latex && make refman.pdf && cd ../../../ && cp doc/doxygen/latex/refman.pdf $(htmldir)/doxygen/$(PACKAGE).pdf
58         cd $(htmldir) && cvs add -kb releases/$(distdir).tar.gz{,.sig} && \
59                 cvs commit -m "Update." manual/ reference/ doxygen/ releases/