Fix -Werror handling.
[gnutls:gnutls.git] / cfg.mk
1 # Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation
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 ?= WARN_CFLAGS=-Werror
22 CFGFLAGS ?= --enable-gtk-doc
23
24 INDENT_SOURCES = `find . -name \*.c|grep -v -e ^./lgl -e ^./gl -e ^./src/cfg -e -gaa.c -e asn1_tab.c`
25
26 ifeq ($(.DEFAULT_GOAL),abort-due-to-no-makefile)
27 .DEFAULT_GOAL := bootstrap
28 endif
29
30 PODIR := lib/po
31 PO_DOMAIN := libgnutls
32
33 local-checks-to-skip = sc_prohibit_strcmp sc_prohibit_atoi_atof         \
34         sc_error_message_uppercase sc_prohibit_have_config_h            \
35         sc_require_config_h sc_require_config_h_first                   \
36         sc_trailing_blank sc_unmarked_diagnostics sc_immutable_NEWS
37
38 autoreconf:
39         for f in $(PODIR)/*.po.in; do \
40                 cp $$f `echo $$f | sed 's/.in//'`; \
41         done
42         mv lib/build-aux/config.rpath lib/build-aux/config.rpath-
43         test -f ./configure || autoreconf --install
44         mv lib/build-aux/config.rpath- lib/build-aux/config.rpath
45
46 update-po: refresh-po
47         for f in `ls $(PODIR)/*.po | grep -v quot.po`; do \
48                 cp $$f $$f.in; \
49         done
50         git add $(PODIR)/*.po.in
51         git commit -m "Sync with TP." $(PODIR)/LINGUAS $(PODIR)/*.po.in
52
53 bootstrap: autoreconf
54         $(WFLAGS) ./configure $(CFGFLAGS)
55
56 # Code Coverage
57
58 pre-coverage:
59         ln -sf /usr/local/share/gaa/gaa.skel src/gaa.skel
60
61 web-coverage:
62         rm -fv `find $(htmldir)/coverage -type f | grep -v CVS`
63         cp -rv doc/coverage/* $(htmldir)/coverage/
64
65 upload-web-coverage:
66         cd $(htmldir) && \
67                 cvs commit -m "Update." coverage
68
69 # Mingw32
70
71 W32ROOT ?= $(HOME)/gnutls4win/inst
72
73 mingw32: autoreconf 
74         ./configure $(CFGFLAGS) --host=i586-mingw32msvc --build=`build-aux/config.guess` --with-libtasn1-prefix=$(W32ROOT) --with-libgcrypt-prefix=$(W32ROOT) --prefix $(W32ROOT)
75
76 .PHONY: bootstrap autoreconf mingw32
77
78 # Release
79
80 ChangeLog:
81         git log --pretty --numstat --summary --since="2005 November 07" -- | git2cl > ChangeLog
82         cat .clcopying >> ChangeLog
83
84 tag = $(PACKAGE)_`echo $(VERSION) | sed 's/\./_/g'`
85 htmldir = ../www-$(PACKAGE)
86
87 release: prepare upload web upload-web
88
89 prepare:
90         ! git tag -l $(tag) | grep $(PACKAGE) > /dev/null
91         rm -f ChangeLog
92         $(MAKE) ChangeLog distcheck
93         git commit -m Generated. ChangeLog
94         git tag -u b565716f! -m $(VERSION) $(tag)
95
96 upload:
97         git push
98         git push --tags
99         build-aux/gnupload --to alpha.gnu.org:$(PACKAGE) $(distdir).tar.bz2
100         scp $(distdir).tar.bz2 $(distdir).tar.bz2.sig igloo.linux.gr:~ftp/pub/gnutls/devel/
101         ssh igloo.linux.gr 'cd ~ftp/pub/gnutls/devel/ && sha1sum *.tar.bz2 > CHECKSUMS'
102         cp $(distdir).tar.bz2 $(distdir).tar.bz2.sig ../releases/$(PACKAGE)/
103
104 web:
105         cd doc && ../build-aux/gendocs.sh --html "--css-include=texinfo.css" \
106                 -o ../$(htmldir)/manual/ $(PACKAGE) $(PACKAGE_NAME)
107         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
108         cp -v doc/reference/html/*.html doc/reference/html/*.png doc/reference/html/*.devhelp doc/reference/html/*.css $(htmldir)/reference/
109
110 upload-web:
111         cd $(htmldir) && cvs commit -m "Update." manual/ reference/ doxygen/