1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Simon Josefsson.
#
# This file is part of Libntlm.
#
# Libntlm is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation; either version 2.1 of
# the License, or (at your option) any later version.
#
# Libntlm is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with Libntlm; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,
# USA
WFLAGS ?= WARN_CFLAGS=-Werror
CFGFLAGS ?= $(WFLAGS)
ifeq ($(.DEFAULT_GOAL),abort-due-to-no-makefile)
.DEFAULT_GOAL := bootstrap
endif
local-checks-to-skip = sc_prohibit_strcmp sc_program_name \
sc_trailing_blank sc_GPL_version sc_immutable_NEWS
VC_LIST_ALWAYS_EXCLUDE_REGEX = ^maint.mk|(gl|tests|test)/.*$$
# Explicit syntax-check exceptions.
exclude_file_name_regexp--sc_bindtextdomain = ^test_ntlm.c$$
autoreconf:
test -f ./configure || autoreconf --install
bootstrap: autoreconf
./configure $(CFGFLAGS)
W32ROOT ?= $(HOME)/w32root
mingw32: autoreconf
./configure --host=i586-mingw32msvc --build=`./config.guess` --prefix=$(W32ROOT)
INDENT_SOURCES = $(SOURCES)
# Maintainer targets
ChangeLog:
git2cl > ChangeLog
cat .clcopying >> ChangeLog
htmldir = ../www-$(PACKAGE)
tag = $(PACKAGE)-`echo $(VERSION) | sed 's/\./-/g'`
release: prepare upload
prepare:
! git tag -l $(tag) | grep $(PACKAGE) > /dev/null
rm -f ChangeLog
$(MAKE) ChangeLog distcheck
gpg -b $(distdir).tar.gz
gpg --verify $(distdir).tar.gz.sig
git commit -m Generated. ChangeLog
git tag -u b565716f! -m $(VERSION) $(tag)
upload:
git push
git push --tags
cp $(distdir).tar.gz $(distdir).tar.gz.sig ../releases/$(PACKAGE)/
cp -v $(distdir).tar.gz{,.sig} $(htmldir)/releases/
cd $(htmldir) && cvs add -kb releases/$(distdir).tar.gz{,.sig} && \
cvs commit -m "Update." releases/
review-diff:
git diff `git describe --abbrev=0`.. \
| grep -v -e ^index -e '^diff --git' \
| filterdiff -p 1 -x 'build-aux/*' -x 'gl/*' -x 'maint.mk' -x '.gitignore' -x '.x-sc*' -x ChangeLog -x GNUmakefile \
| less
|