Update gnulib files. Fix syntax-check usage.
[gnutls:gnutls.git] / cfg.mk
1 # Copyright (C) 2006-2011 Free Software Foundation, Inc.
2 #
3 # Author: Simon Josefsson
4 #
5 # This file is part of GnuTLS.
6 #
7 # This file is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This file is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this file; if not, write to the Free Software Foundation,
19 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20
21 WFLAGS ?= --enable-gcc-warnings
22 ADDFLAGS ?=
23 CFGFLAGS ?= --enable-gtk-doc --enable-gtk-doc-pdf $(ADDFLAGS) $(WFLAGS)
24 PACKAGE ?= gnutls
25
26 INDENT_SOURCES = `find . -name \*.[ch] -o -name gnutls.h.in | grep -v -e ^./build-aux/ -e ^./lib/minitasn1/ -e ^./lib/build-aux/ -e ^./gl/ -e ^./src/cfg/ -e -gaa.[ch] -e asn1_tab.c -e ^./tests/suite/`
27
28 ifeq ($(.DEFAULT_GOAL),abort-due-to-no-makefile)
29 .DEFAULT_GOAL := bootstrap
30 endif
31
32 PODIR := po
33 PO_DOMAIN := libgnutls
34
35 local-checks-to-skip = sc_GPL_version sc_bindtextdomain                 \
36         sc_immutable_NEWS sc_program_name sc_prohibit_atoi_atof         \
37         sc_prohibit_empty_lines_at_EOF sc_prohibit_hash_without_use     \
38         sc_prohibit_have_config_h sc_prohibit_magic_number_exit         \
39         sc_prohibit_strcmp sc_require_config_h                          \
40         sc_require_config_h_first sc_texinfo_acronym sc_trailing_blank  \
41         sc_unmarked_diagnostics sc_useless_cpp_parens
42
43 VC_LIST_ALWAYS_EXCLUDE_REGEX = ^maint.mk|(build-aux/|gl/|src/cfg/|tests/suite/ecore/|doc/protocol/).*
44
45 # Explicit syntax-check exceptions.
46 exclude_file_name_regexp--sc_cast_of_alloca_return_value = ^guile/
47 exclude_file_name_regexp--sc_error_message_uppercase = ^doc/examples/ex-cxx.cpp|guile/src/extra.c|src/certtool.c|tests/pkcs12_encode.c
48 exclude_file_name_regexp--sc_file_system = ^doc/doxygen/Doxyfile
49 exclude_file_name_regexp--sc_prohibit_cvs_keyword = ^lib/nettle/
50 exclude_file_name_regexp--sc_prohibit_doubled_word = ^tests/rsa-md5-collision/README$$
51 exclude_file_name_regexp--sc_prohibit_undesirable_word_seq = ^tests/nist-pkits/gnutls-nist-tests.html
52 exclude_file_name_regexp--sc_space_tab = ^doc/.*.(pdf|png)|tests/nist-pkits/|tests/suite/x509paths/
53 exclude_file_name_regexp--sc_two_space_separator_in_usage = ^doc/cha-programs.texi|tests/sha2/sha2|tests/sha2/sha2-dsa$$
54
55 autoreconf:
56         for f in $(PODIR)/*.po.in; do \
57                 cp $$f `echo $$f | sed 's/.in//'`; \
58         done
59         mv build-aux/config.rpath build-aux/config.rpath-
60         test -f ./configure || autoreconf --install
61         test `hostname` = "gaggia" && cp gl/m4/size_max.m4 m4/ || true
62         mv build-aux/config.rpath- build-aux/config.rpath
63
64 update-po: refresh-po
65         for f in `ls $(PODIR)/*.po | grep -v quot.po`; do \
66                 cp $$f $$f.in; \
67         done
68         git add $(PODIR)/*.po.in
69         git commit -m "Sync with TP." $(PODIR)/LINGUAS $(PODIR)/*.po.in
70
71 bootstrap: autoreconf
72         ./configure $(CFGFLAGS)
73
74 glimport:
75         gnulib-tool --add-import
76
77 # Code Coverage
78
79 pre-coverage:
80         ln -sf /usr/local/share/gaa/gaa.skel src/gaa.skel
81
82 web-coverage:
83         rm -fv `find $(htmldir)/coverage -type f | grep -v CVS`
84         cp -rv doc/coverage/* $(htmldir)/coverage/
85
86 upload-web-coverage:
87         cd $(htmldir) && \
88                 cvs commit -m "Update." coverage
89
90 # Release
91
92 ChangeLog:
93         git log --pretty --numstat --summary --since="2009 November 07" -- | git2cl > ChangeLog
94         cat .clcopying >> ChangeLog
95
96 tag = $(PACKAGE)_`echo $(VERSION) | sed 's/\./_/g'`
97 htmldir = ../www-$(PACKAGE)
98
99 release: syntax-check prepare upload web upload-web
100
101 prepare:
102         ! git tag -l $(tag) | grep $(PACKAGE) > /dev/null
103         rm -f ChangeLog
104         $(MAKE) ChangeLog distcheck
105         git commit -m Generated. ChangeLog
106         git tag -u b565716f! -m $(VERSION) $(tag)
107
108 upload:
109         git push
110         git push --tags
111         build-aux/gnupload --to alpha.gnu.org:$(PACKAGE) $(distdir).tar.bz2
112         scp $(distdir).tar.bz2 $(distdir).tar.bz2.sig igloo.linux.gr:~ftp/pub/gnutls/devel/
113         ssh igloo.linux.gr 'cd ~ftp/pub/gnutls/devel/ && sha1sum *.tar.bz2 > CHECKSUMS'
114         cp $(distdir).tar.bz2 $(distdir).tar.bz2.sig ../releases/$(PACKAGE)/
115
116 web:
117         echo generating documentation for $(PACKAGE)
118         cd doc && $(SHELL) ../build-aux/gendocs.sh \
119                 --html "--css-include=texinfo.css" \
120                 -o ../$(htmldir)/manual/ $(PACKAGE) "$(PACKAGE_NAME)"
121         #cd doc/doxygen && doxygen && cd ../.. && cp -v doc/doxygen/html/* $(htmldir)/devel/doxygen/ && cd doc/doxygen/latex && make refman.pdf && cd ../../../ && cp doc/doxygen/latex/refman.pdf $(htmldir)/devel/doxygen/$(PACKAGE).pdf
122         cp -v doc/reference/html/*.html doc/reference/html/*.png doc/reference/html/*.devhelp doc/reference/html/*.css $(htmldir)/reference/
123         #cp -v doc/cyclo/cyclo-$(PACKAGE).html $(htmldir)/cyclo/
124
125 upload-web:
126         cd $(htmldir) && \
127                 cvs commit -m "Update." manual/ reference/ \
128                         doxygen/ devel/ cyclo/