Initialize Tizen 2.3
[external/libtasn1.git] / cfg.mk
1 # Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation,
2 # Inc.
3 # Author: Simon Josefsson
4 #
5 # This file is part of LIBTASN1.
6 #
7 # This program is free software: you can redistribute it and/or modify
8 # it 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 program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 WFLAGS ?= --enable-gcc-warnings
21 ADDFLAGS ?=
22 CFGFLAGS ?= --enable-gtk-doc --enable-gtk-doc-pdf $(ADDFLAGS) $(WFLAGS)
23
24 INDENT_SOURCES = `find . -name \*.[ch]|grep -v -e ^./gl -e ^./lib/gl -e ^./build-aux/ -e ^./lib/ASN1.c -e ^./tests/Test_tree_asn1_tab.c`
25
26 ifeq ($(.DEFAULT_GOAL),abort-due-to-no-makefile)
27 .DEFAULT_GOAL := bootstrap
28 endif
29
30 local-checks-to-skip = sc_prohibit_strcmp sc_prohibit_have_config_h     \
31         sc_require_config_h sc_require_config_h_first                   \
32         sc_immutable_NEWS sc_prohibit_magic_number_exit
33 VC_LIST_ALWAYS_EXCLUDE_REGEX = ^(build-aux|gl|lib/gllib|lib/glm4)/.*$
34
35 bootstrap-tools := autoconf,automake,libtool,bison
36 gpg_key_ID = b565716f
37
38 autoreconf:
39         test -f ./configure || autoreconf --install
40
41 bootstrap: autoreconf
42         ./configure $(CFGFLAGS)
43
44 web-coverage:
45         rm -fv `find $(htmldir)/coverage -type f | grep -v CVS`
46         cp -rv $(COVERAGE_OUT)/* $(htmldir)/coverage/
47
48 upload-web-coverage:
49         cd $(htmldir) && \
50                 cvs commit -m "Update." coverage
51
52 W32ROOT ?= $(HOME)/gnutls4win/inst
53
54 mingw32: autoreconf
55         ./configure --enable-gtk-doc --host=i586-mingw32msvc --build=`./config.guess` --prefix=$(W32ROOT)
56
57 ChangeLog:
58         git2cl > ChangeLog
59         cat .clcopying >> ChangeLog
60
61 htmldir = ../www-$(PACKAGE)
62 tag = $(PACKAGE)_`echo $(VERSION) | sed 's/\./_/g'`
63
64 release: prepare upload web upload-web
65
66 prepare:
67         ! git tag -l $(tag) | grep $(PACKAGE) > /dev/null
68         rm -f ChangeLog
69         $(MAKE) ChangeLog distcheck
70         git commit -m Generated. ChangeLog
71         git tag -u b565716f! -m $(VERSION) $(tag)
72
73 upload:
74         git push
75         git push --tags
76         gnupload --to ftp.gnu.org:libtasn1 $(distdir).tar.gz
77         scp $(distdir).tar.gz $(distdir).tar.gz.sig igloo.linux.gr:~ftp/pub/gnutls/libtasn1/
78         ssh igloo.linux.gr 'cd ~ftp/pub/gnutls/libtasn1/ && sha1sum *.tar.gz > CHECKSUMS'
79         cp $(distdir).tar.gz $(distdir).tar.gz.sig ../releases/$(PACKAGE)/
80
81 web:
82         cd doc && ../build-aux/gendocs.sh --html "--css-include=texinfo.css" \
83                 -o ../$(htmldir)/manual/ $(PACKAGE) "$(PACKAGE_NAME)"
84         cp -v doc/reference/$(PACKAGE).pdf doc/reference/html/*.html doc/reference/html/*.png doc/reference/html/*.devhelp doc/reference/html/*.css $(htmldir)/reference/
85         cp -v doc/cyclo/cyclo-$(PACKAGE).html $(htmldir)/cyclo/index.html
86
87 upload-web:
88         cd $(htmldir) && cvs commit -m "Update." manual/ reference/
89
90 review-diff:
91         git diff `git describe --abbrev=0`.. \
92         | grep -v -e ^index -e '^diff --git' \
93         | filterdiff -p 1 -x 'gl/*' -x 'build-aux/*' -x 'lib/gl*' -x 'po/*' -x 'maint.mk' -x '.gitignore' -x '.x-sc*' -x ChangeLog -x GNUmakefile -x 'lib/ASN1.c' \
94         | less
95
96 # Work around maint.mk issue.
97 taint-distcheck:
98 my-distcheck: