diff options
author | Simon Josefsson <simon@josefsson.org> | 2010-04-13 10:23:03 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2010-04-13 10:23:03 +0200 |
commit | bd50a4d730e75804744f45308c4d4dfb40db042d (patch) | |
tree | f3cbc90a765c9567a0f32bf1cfceb8c6f4918717 /GNUmakefile | |
parent | 253f4faa23195cc599bb06feafc1dccb4ed1a6b1 (diff) | |
download | libtasn1-bd50a4d730e75804744f45308c4d4dfb40db042d.tar.gz libtasn1-bd50a4d730e75804744f45308c4d4dfb40db042d.tar.bz2 libtasn1-bd50a4d730e75804744f45308c4d4dfb40db042d.zip |
Update gnulib files, fix new syntax-check warnings, add license.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 40ccc06..daba47a 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -49,7 +49,7 @@ include $(srcdir)/maint.mk # Allow cfg.mk to override these. _build-aux ?= build-aux -_autoreconf ?= autoreconf +_autoreconf ?= autoreconf -v # Ensure that $(VERSION) is up to date for dist-related targets, but not # for others: rerunning autoreconf and recompiling everything isn't cheap. @@ -78,7 +78,8 @@ ifeq ($(_have-git-version-gen)0,yes$(MAKELEVEL)) $(info run '$(MAKE) _version' to fix it) else $(info INFO: running autoreconf for new version string: $(_curr-ver)) - _dummy := $(shell $(MAKE) $(AM_MAKEFLAGS) _version) +GNUmakefile: _version + touch GNUmakefile endif endif endif @@ -88,6 +89,7 @@ endif .PHONY: _version _version: cd $(srcdir) && rm -rf autom4te.cache .version && $(_autoreconf) + $(MAKE) $(AM_MAKEFLAGS) Makefile else |