Fix gnupload.
[platform/upstream/libtasn1.git] / cfg.mk
1 # Copyright (C) 2006, 2007, 2008 Free Software Foundation
2 # Author: Simon Josefsson
3 #
4 # This file is part of LIBTASN1.
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 CFGFLAGS ?= --enable-gtk-doc
20
21 ifeq ($(.DEFAULT_GOAL),abort-due-to-no-makefile)
22 .DEFAULT_GOAL := bootstrap
23 endif
24
25 autoreconf:
26         test -f ./configure || autoreconf --install
27
28 bootstrap: autoreconf
29         ./configure $(CFGFLAGS)
30
31 W32ROOT ?= $(HOME)/w32root
32
33 mingw32: autoreconf 
34         ./configure --enable-gtk-doc --host=i586-mingw32msvc --build=`./config.guess` --prefix=$(W32ROOT)
35
36 ChangeLog:
37         git2cl > ChangeLog
38         cat .clcopying >> ChangeLog
39
40 htmldir = ../www-$(PACKAGE)
41 tag = $(PACKAGE)_`echo $(VERSION) | sed 's/\./_/g'`
42
43 release: upload webdocs
44
45 upload:
46         ! git-tag -l $(tag) | grep $(PACKAGE) > /dev/null
47         rm -f ChangeLog
48         $(MAKE) ChangeLog distcheck
49         git commit -m Generated. ChangeLog
50         git-tag -u b565716f! -m $(VERSION) $(tag)
51         git-push
52         git-push --tags
53         gnupload --to ftp.gnu.org:gnutls $(distdir).tar.gz
54         scp $(distdir).tar.gz $(distdir).tar.gz.sig igloo.linux.gr:~ftp/pub/gnutls/libtasn1/
55         ssh igloo.linux.gr 'cd ~ftp/pub/gnutls/libtasn1/ && sha1sum *.tar.gz > CHECKSUMS'
56         cp $(distdir).tar.gz $(distdir).tar.gz.sig ../releases/gnutls/$(PACKAGE)/
57         make webdocs
58
59 webdocs:
60         cd doc && ../build-aux/gendocs.sh -o ../$(htmldir)/manual $(PACKAGE) "$(PACKAGE_NAME)"
61         cp -v doc/reference/html/*.html doc/reference/html/*.png doc/reference/html/*.devhelp doc/reference/html/*.css $(htmldir)/reference/
62         cd $(htmldir) && cvs commit -m "Update." manual/ reference/