diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-11-10 10:21:57 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-11-10 10:21:57 +0000 |
commit | 2caa63d64f99a64f64c8c4a5260477f761052eb4 (patch) | |
tree | 600983cab39b43533d73d7bca50bfa616131c10b /Build/source/libs/libpng/Makefile.am | |
parent | 3bb1571e68019ddbc4b3f1206a61a3a9fc55a9b1 (diff) |
towards TL2010: libs/
git-svn-id: svn://tug.org/texlive/trunk@15957 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/libpng/Makefile.am')
-rw-r--r-- | Build/source/libs/libpng/Makefile.am | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/Build/source/libs/libpng/Makefile.am b/Build/source/libs/libpng/Makefile.am index 90db63ece24..1ebb50d7a67 100644 --- a/Build/source/libs/libpng/Makefile.am +++ b/Build/source/libs/libpng/Makefile.am @@ -8,6 +8,10 @@ ## ACLOCAL_AMFLAGS = -I ../../m4 +# Rebuild +.PHONY: rebuild +rebuild: all + ## We want to re-distribute the whole original libpng source tree. ## ## With current automake (1.10.2) 'make distcheck' fails when @@ -21,7 +25,7 @@ EXTRA_DIST += $(LIBPNG_TREE)-PATCHES # in case of an SVN repository dist-hook: - rm -rf `find $(distdir)/$(LIBPNG_TREE) -name .svn` + rm -rf `find $(distdir) -name .svn` rm -f $(distdir)/$(LIBPNG_TREE)/config.sub \ $(distdir)/$(LIBPNG_TREE)/config.guess \ $(distdir)/$(LIBPNG_TREE)/depcomp \ @@ -52,7 +56,13 @@ nodist_libpng_a_SOURCES = \ $(LIBPNG_TREE)/pngerror.c \ $(LIBPNG_TREE)/pngpread.c -$(libpng_a_OBJECTS): $(ZLIB_DEPEND) +$(libpng_a_OBJECTS): config.force + +config.force: $(ZLIB_DEPEND) + echo timestamp >config.force + $(SHELL) ./config.status --recheck + +DISTCLEANFILES = config.force ## Rebuild zlib @ZLIB_RULE@ |