Update copyright years.
[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 = ^(build-aux|gl|lib/gllib|lib/glm4)/.*$
35
36 bootstrap-tools := autoconf,automake,libtool,bison
37 gpg_key_ID = b565716f
38
39 autoreconf:
40         test -f ./configure || autoreconf --install
41
42 bootstrap: autoreconf
43         ./configure $(CFGFLAGS)
44
45 web-coverage:
46         rm -fv `find $(htmldir)/coverage -type f | grep -v CVS`
47         cp -rv $(COVERAGE_OUT)/* $(htmldir)/coverage/
48
49 upload-web-coverage:
50         cd $(htmldir) && \
51                 cvs commit -m "Update." coverage
52
53 W32ROOT ?= $(HOME)/gnutls4win/inst
54
55 mingw32: autoreconf
56         ./configure --enable-gtk-doc --host=i586-mingw32msvc --build=`./config.guess` --prefix=$(W32ROOT)
57
58 ChangeLog:
59         git2cl > ChangeLog
60         cat .clcopying >> ChangeLog
61
62 htmldir = ../www-$(PACKAGE)
63 tag = $(PACKAGE)_`echo $(VERSION) | sed 's/\./_/g'`
64
65 release: prepare upload web upload-web
66
67 prepare:
68         ! git tag -l $(tag) | grep $(PACKAGE) > /dev/null
69         rm -f ChangeLog
70         $(MAKE) ChangeLog distcheck
71         git commit -m Generated. ChangeLog
72         git tag -u b565716f! -m $(VERSION) $(tag)
73
74 upload:
75         git push
76         git push --tags
77         gnupload --to ftp.gnu.org:libtasn1 $(distdir).tar.gz
78         scp $(distdir).tar.gz $(distdir).tar.gz.sig igloo.linux.gr:~ftp/pub/gnutls/libtasn1/
79         ssh igloo.linux.gr 'cd ~ftp/pub/gnutls/libtasn1/ && sha1sum *.tar.gz > CHECKSUMS'
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
97
98 # Work around maint.mk issue.
99 taint-distcheck:
100 my-distcheck: