Fix syntax-check nits.
[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 exclude_file_name_regexp--sc_error_message_period = ^src/crywrap/crywrap.c$$
55 exclude_file_name_regexp--sc_error_message_uppercase = ^doc/examples/ex-cxx.cpp|guile/src/extra.c|src/certtool.c|src/crywrap/crywrap.c|tests/pkcs12_encode.c$$
56
57 autoreconf:
58         for f in $(PODIR)/*.po.in; do \
59                 cp $$f `echo $$f | sed 's/.in//'`; \
60         done
61         mv build-aux/config.rpath build-aux/config.rpath-
62         test -f ./configure || autoreconf --install
63         test `hostname` = "gaggia" && cp gl/m4/size_max.m4 m4/ || true
64         mv build-aux/config.rpath- build-aux/config.rpath
65
66 update-po: refresh-po
67         for f in `ls $(PODIR)/*.po | grep -v quot.po`; do \
68                 cp $$f $$f.in; \
69         done
70         git add $(PODIR)/*.po.in
71         git commit -m "Sync with TP." $(PODIR)/LINGUAS $(PODIR)/*.po.in
72
73 bootstrap: autoreconf
74         ./configure $(CFGFLAGS)
75
76 glimport:
77         gnulib-tool --add-import
78
79 # Code Coverage
80
81 pre-coverage:
82         ln -sf /usr/local/share/gaa/gaa.skel src/gaa.skel
83
84 web-coverage:
85         rm -fv `find $(htmldir)/coverage -type f | grep -v CVS`
86         cp -rv doc/coverage/* $(htmldir)/coverage/
87
88 upload-web-coverage:
89         cd $(htmldir) && \
90                 cvs commit -m "Update." coverage
91
92 # Release
93
94 ChangeLog:
95         git log --pretty --numstat --summary --since="2009 November 07" -- | git2cl > ChangeLog
96         cat .clcopying >> ChangeLog
97
98 tag = $(PACKAGE)_`echo $(VERSION) | sed 's/\./_/g'`
99 htmldir = ../www-$(PACKAGE)
100
101 release: syntax-check prepare upload web upload-web
102
103 prepare:
104         ! git tag -l $(tag) | grep $(PACKAGE) > /dev/null
105         rm -f ChangeLog
106         $(MAKE) ChangeLog distcheck
107         git commit -m Generated. ChangeLog
108         git tag -u b565716f! -m $(VERSION) $(tag)
109
110 upload:
111         git push
112         git push --tags
113         build-aux/gnupload --to alpha.gnu.org:$(PACKAGE) $(distdir).tar.bz2
114         scp $(distdir).tar.bz2 $(distdir).tar.bz2.sig igloo.linux.gr:~ftp/pub/gnutls/devel/
115         ssh igloo.linux.gr 'cd ~ftp/pub/gnutls/devel/ && sha1sum *.tar.bz2 > CHECKSUMS'
116         cp $(distdir).tar.bz2 $(distdir).tar.bz2.sig ../releases/$(PACKAGE)/
117
118 web:
119         echo generating documentation for $(PACKAGE)
120         cd doc && $(SHELL) ../build-aux/gendocs.sh \
121                 --html "--css-include=texinfo.css" \
122                 -o ../$(htmldir)/manual/ $(PACKAGE) "$(PACKAGE_NAME)"
123         #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
124         cp -v doc/reference/html/*.html doc/reference/html/*.png doc/reference/html/*.devhelp doc/reference/html/*.css $(htmldir)/reference/
125         #cp -v doc/cyclo/cyclo-$(PACKAGE).html $(htmldir)/cyclo/
126
127 upload-web:
128         cd $(htmldir) && \
129                 cvs commit -m "Update." manual/ reference/ \
130                         doxygen/ devel/ cyclo/