Add announcement message.
[gnutls.git] / cfg.mk
blobf1cc04d458997c5b37a53ae5538202db2f99163c
1 # Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation,
2 # Inc.
4 # Author: Simon Josefsson
6 # This file is part of GNUTLS.
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.
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.
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.
22 WFLAGS ?= --enable-gcc-warnings
23 ADDFLAGS ?=
24 CFGFLAGS ?= --enable-gtk-doc $(ADDFLAGS) $(WFLAGS)
26 INDENT_SOURCES = `find . -name \*.c|grep -v -e ^./lib/gl -e ^./gl -e ^./src/cfg -e -gaa.c -e asn1_tab.c`
28 ifeq ($(.DEFAULT_GOAL),abort-due-to-no-makefile)
29 .DEFAULT_GOAL := bootstrap
30 endif
32 PODIR := lib/po
33 PO_DOMAIN := libgnutls
35 local-checks-to-skip = sc_prohibit_strcmp sc_prohibit_atoi_atof \
36 sc_error_message_uppercase sc_prohibit_have_config_h \
37 sc_require_config_h sc_require_config_h_first \
38 sc_trailing_blank sc_unmarked_diagnostics sc_immutable_NEWS
40 autoreconf:
41 for f in $(PODIR)/*.po.in; do \
42 cp $$f `echo $$f | sed 's/.in//'`; \
43 done
44 mv lib/build-aux/config.rpath lib/build-aux/config.rpath-
45 test -f ./configure || autoreconf --install
46 test `hostname` = "gaggia" && cp lib/gl/m4/size_max.m4 lib/m4/ || true
47 mv lib/build-aux/config.rpath- lib/build-aux/config.rpath
49 update-po: refresh-po
50 for f in `ls $(PODIR)/*.po | grep -v quot.po`; do \
51 cp $$f $$f.in; \
52 done
53 git add $(PODIR)/*.po.in
54 git commit -m "Sync with TP." $(PODIR)/LINGUAS $(PODIR)/*.po.in
56 bootstrap: autoreconf
57 ./configure $(CFGFLAGS)
59 glimport:
60 gnulib-tool --m4-base gl/m4 --import
61 cd lib && gnulib-tool --m4-base gl/m4 --import
62 cd libextra && gnulib-tool --m4-base gl/m4 --import
64 # Code Coverage
66 pre-coverage:
67 ln -sf /usr/local/share/gaa/gaa.skel src/gaa.skel
69 web-coverage:
70 rm -fv `find $(htmldir)/coverage -type f | grep -v CVS`
71 cp -rv doc/coverage/* $(htmldir)/coverage/
73 upload-web-coverage:
74 cd $(htmldir) && \
75 cvs commit -m "Update." coverage
77 # Mingw32
79 W32ROOT ?= $(HOME)/gnutls4win/inst
81 mingw32: autoreconf
82 ./configure $(CFGFLAGS) --host=i586-mingw32msvc --build=`build-aux/config.guess` --with-libtasn1-prefix=$(W32ROOT) --with-libgcrypt-prefix=$(W32ROOT) --prefix $(W32ROOT)
84 .PHONY: bootstrap autoreconf mingw32
86 # Release
88 ChangeLog:
89 git log --pretty --numstat --summary --since="2005 November 07" -- | git2cl > ChangeLog
90 cat .clcopying >> ChangeLog
92 tag = $(PACKAGE)_`echo $(VERSION) | sed 's/\./_/g'`
93 htmldir = ../www-$(PACKAGE)
95 release: prepare upload web upload-web
97 prepare:
98 ! git tag -l $(tag) | grep $(PACKAGE) > /dev/null
99 rm -f ChangeLog
100 $(MAKE) ChangeLog distcheck
101 git commit -m Generated. ChangeLog
102 git tag -u b565716f! -m $(VERSION) $(tag)
104 upload:
105 git push
106 git push --tags
107 build-aux/gnupload --to alpha.gnu.org:$(PACKAGE) $(distdir).tar.bz2
108 scp $(distdir).tar.bz2 $(distdir).tar.bz2.sig igloo.linux.gr:~ftp/pub/gnutls/devel/
109 ssh igloo.linux.gr 'cd ~ftp/pub/gnutls/devel/ && sha1sum *.tar.bz2 > CHECKSUMS'
110 cp $(distdir).tar.bz2 $(distdir).tar.bz2.sig ../releases/$(PACKAGE)/
112 web:
113 cd doc && ../build-aux/gendocs.sh --html "--css-include=texinfo.css" \
114 -o ../$(htmldir)/devel/manual/ $(PACKAGE) "$(PACKAGE_NAME)"
115 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
116 cp -v doc/reference/html/*.html doc/reference/html/*.png doc/reference/html/*.devhelp doc/reference/html/*.css $(htmldir)/devel/reference/
117 cp -v doc/cyclo/cyclo-$(PACKAGE).html $(htmldir)/cyclo/
119 upload-web:
120 cd $(htmldir) && \
121 cvs commit -m "Update." manual/ reference/ \
122 doxygen/ devel/ cyclo/