diff options
author | Bruno Haible <bruno@clisp.org> | 2000-07-29 02:02:54 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2000-07-29 02:02:54 +0000 |
commit | 2c3d99710370fb090cfd0c792204027fab0cad93 (patch) | |
tree | 4ea9d91d6756716c052fe37bd9be765d848fc93e /m4/Makefile.in | |
parent | 186a26007da68f47ede350a73403254850f37361 (diff) | |
download | external_gettext-2c3d99710370fb090cfd0c792204027fab0cad93.zip external_gettext-2c3d99710370fb090cfd0c792204027fab0cad93.tar.gz external_gettext-2c3d99710370fb090cfd0c792204027fab0cad93.tar.bz2 |
Use "automake --gnits --include-deps" now. This makes the source dir
consistent with later releases.
Diffstat (limited to 'm4/Makefile.in')
-rw-r--r-- | m4/Makefile.in | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/m4/Makefile.in b/m4/Makefile.in index 6973407..ed4440b 100644 --- a/m4/Makefile.in +++ b/m4/Makefile.in @@ -102,7 +102,7 @@ aclocal_DATA = gettext.m4 isc-posix.m4 lcmessage.m4 progtest.m4 # Generate this list with # find . -type f -name '*.m4' -printf '%f\n'|sort |fmt |tr '\012' @ \ # |sed 's/@$/%/;s/@/ \\@/g' |tr @% '\012\012' -EXTRA_DIST = README gettext.m4 isc-posix.m4 lcmessage.m4 progtest.m4 +EXTRA_DIST = README codeset.m4 gettext.m4 iconv.m4 isc-posix.m4 lcmessage.m4 progtest.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = ../config.h @@ -119,9 +119,9 @@ GZIP_ENV = --best all: all-redirect .SUFFIXES: $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) - cd $(top_srcdir) && $(AUTOMAKE) --gnu m4/Makefile + cd $(top_srcdir) && $(AUTOMAKE) --gnits --include-deps m4/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES) +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) \ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status @@ -153,11 +153,6 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) subdir = m4 distdir: $(DISTFILES) - here=`cd $(top_builddir) && pwd`; \ - top_distdir=`cd $(top_distdir) && pwd`; \ - distdir=`cd $(distdir) && pwd`; \ - cd $(top_srcdir) \ - && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu m4/Makefile @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ |