Drop igloo, the directory is gone from the server.
[platform/upstream/libtasn1.git] / cfg.mk
1 # Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Free Software
2 # Foundation, 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         sc_bindtextdomain
34 VC_LIST_ALWAYS_EXCLUDE_REGEX = ^(maint.mk|build-aux/|gl/.*|lib/gllib/.*|lib/glm4/.*|lib/ASN1\.c|m4/pkg.m4|doc/gdoc|windows/.*|doc/fdl-1.3.texi|build-aux/pmccabe2html|build-aux/pmccabe.css)$$
35
36 # Explicit syntax-check exceptions.
37 exclude_file_name_regexp--sc_prohibit_empty_lines_at_EOF = ^tests/TestIndef.p12$
38 exclude_file_name_regexp--sc_GPL_version = ^lib/libtasn1.h$
39 exclude_file_name_regexp--sc_program_name = ^tests/|examples/
40 exclude_file_name_regexp--sc_prohibit_atoi_atof = ^src/asn1Coding.c|src/asn1Decoding.c$
41 exclude_file_name_regexp--sc_prohibit_empty_lines_at_EOF = ^tests/crlf.cer|tests/TestIndef.p12$
42
43 bootstrap-tools := autoconf,automake,libtool,bison
44 gpg_key_ID = b565716f
45
46 autoreconf:
47         test -f ./configure || autoreconf --install
48
49 bootstrap: autoreconf
50         ./configure $(CFGFLAGS)
51
52 coverage-web:
53         rm -fv `find $(htmldir)/coverage -type f | grep -v CVS`
54         cp -rv $(COVERAGE_OUT)/* $(htmldir)/coverage/
55
56 coverage-web-upload:
57         cd $(htmldir) && \
58                 cvs commit -m "Update." coverage
59
60 ChangeLog:
61         git2cl > ChangeLog
62         cat .clcopying >> ChangeLog
63
64 htmldir = ../www-$(PACKAGE)
65 tag = $(PACKAGE)_`echo $(VERSION) | sed 's/\./_/g'`
66
67 release: prepare upload web upload-web
68
69 prepare:
70         ! git tag -l $(tag) | grep $(PACKAGE) > /dev/null
71         rm -f ChangeLog
72         $(MAKE) ChangeLog distcheck
73         git commit -m Generated. ChangeLog
74         git tag -u b565716f! -m $(VERSION) $(tag)
75
76 upload:
77         git push
78         git push --tags
79         gnupload --to ftp.gnu.org:libtasn1 $(distdir).tar.gz
80         cp $(distdir).tar.gz $(distdir).tar.gz.sig ../releases/$(PACKAGE)/
81
82 web:
83         cd doc && $(SHELL) ../build-aux/gendocs.sh \
84                 --html "--css-include=texinfo.css" \
85                 -o ../$(htmldir)/manual/ $(PACKAGE) "$(PACKAGE_NAME)"
86         cp -v doc/reference/$(PACKAGE).pdf doc/reference/html/*.html doc/reference/html/*.png doc/reference/html/*.devhelp doc/reference/html/*.css $(htmldir)/reference/
87         cp -v doc/cyclo/cyclo-$(PACKAGE).html $(htmldir)/cyclo/index.html
88
89 upload-web:
90         cd $(htmldir) && cvs commit -m "Update." manual/ reference/ cyclo/
91
92 review-diff:
93         git diff `git describe --abbrev=0`.. \
94         | grep -v -e ^index -e '^diff --git' \
95         | 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' \
96         | less