tizen 2.3.1 release
[external/libgnutls26.git] / cfg.mk
1 # Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation,
2 # Inc.
3 #
4 # Author: Simon Josefsson
5 #
6 # This file is part of GnuTLS.
7 #
8 # This file is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This file is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 # General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this file; if not, write to the Free Software Foundation,
20 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21
22 WFLAGS ?= --enable-gcc-warnings
23 ADDFLAGS ?=
24 CFGFLAGS ?= --enable-gtk-doc --enable-gtk-doc-pdf $(ADDFLAGS) $(WFLAGS)
25 PACKAGE ?= gnutls
26
27 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/`
28
29 ifeq ($(.DEFAULT_GOAL),abort-due-to-no-makefile)
30 .DEFAULT_GOAL := bootstrap
31 endif
32
33 PODIR := lib/po
34 PO_DOMAIN := libgnutls
35
36 local-checks-to-skip = sc_prohibit_strcmp sc_prohibit_atoi_atof         \
37         sc_error_message_uppercase sc_prohibit_have_config_h            \
38         sc_require_config_h sc_require_config_h_first                   \
39         sc_trailing_blank sc_unmarked_diagnostics sc_immutable_NEWS \
40         sc_prohibit_magic_number_exit sc_texinfo_acronym
41 VC_LIST_ALWAYS_EXCLUDE_REGEX = \
42         ^(((lib/|libextra/)?(gl|build-aux))|tests/suite)/.*
43
44 autoreconf:
45         for f in $(PODIR)/*.po.in; do \
46                 cp $$f `echo $$f | sed 's/.in//'`; \
47         done
48         mv lib/build-aux/config.rpath lib/build-aux/config.rpath-
49         test -f ./configure || autoreconf --install
50         test `hostname` = "gaggia" && cp gl/m4/size_max.m4 m4/ || true
51         mv lib/build-aux/config.rpath- lib/build-aux/config.rpath
52
53 update-po: refresh-po
54         for f in `ls $(PODIR)/*.po | grep -v quot.po`; do \
55                 cp $$f $$f.in; \
56         done
57         git add $(PODIR)/*.po.in
58         git commit -m "Sync with TP." $(PODIR)/LINGUAS $(PODIR)/*.po.in
59
60 bootstrap: autoreconf
61         ./configure $(CFGFLAGS)
62
63 #Two runs the first should add the LGPL components and the
64 #second the components used by src/ files.
65 glimport:
66         gnulib-tool --m4-base gl/m4 --add-import
67         cd lib && gnulib-tool --m4-base gl/m4 --add-import
68         cd libextra && gnulib-tool --m4-base gl/m4 --add-import
69
70 # Code Coverage
71
72 pre-coverage:
73         ln -sf /usr/local/share/gaa/gaa.skel src/gaa.skel
74
75 web-coverage:
76         rm -fv `find $(htmldir)/coverage -type f | grep -v CVS`
77         cp -rv doc/coverage/* $(htmldir)/coverage/
78
79 upload-web-coverage:
80         cd $(htmldir) && \
81                 cvs commit -m "Update." coverage
82
83 # Mingw32
84
85 W32ROOT ?= $(HOME)/gnutls4win/inst
86
87 mingw32: autoreconf 
88         ./configure $(CFGFLAGS) --host=i586-mingw32msvc --build=`build-aux/config.guess` --with-libtasn1-prefix=$(W32ROOT) --with-libgcrypt-prefix=$(W32ROOT) --prefix $(W32ROOT)
89
90 .PHONY: bootstrap autoreconf mingw32
91
92 # Release
93
94 ChangeLog:
95         git log --pretty --numstat --summary --since="2008 November 07" -- | git2cl > ChangeLog
96         cat .clcopying >> ChangeLog
97
98 tag = $(PACKAGE)_`echo $(VERSION) | sed 's/\./_/g'`
99 htmldir = ../www-$(PACKAGE)
100
101 release: 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 ftp.gnu.org:$(PACKAGE) $(distdir).tar.bz2
114         scp $(distdir).tar.bz2 $(distdir).tar.bz2.sig igloo.linux.gr:~ftp/pub/gnutls/
115         ssh igloo.linux.gr 'cd ~ftp/pub/gnutls/ && 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/