From e0fa1b0c20a246712042fd53261395ae3d463604 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Fri, 23 Sep 2011 14:29:40 +0200 Subject: [PATCH] Smake give correct dependencies where they are well defined --- Smake | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/Smake b/Smake index acd93102..61235efd 100644 --- a/Smake +++ b/Smake @@ -108,22 +108,31 @@ GNULIB_MODULES = \ xstrndup \ xvasprintf -all: +all: prep_ph + $(MAKE) -f Smake Makefile.in configure + +.PHONY: prep_ph +prep_ph: test -e ChangeLog || touch ChangeLog test -d m4 || mkdir m4 touch m4/Makefile.am - $(MAKE) -f Smake gnulib + $(GNULIB_TOOL) --add-import --no-changelog --m4-base=gl/m4 \ + --source-base=gl --lib=libgl --tests-base=tests \ + --doc-base=gl/doc --aux-dir=build-aux \ + --libtool $(GNULIB_MODULES) libtoolize --force --automake + +aclocal.m4: aclocal -I m4 -I gl/m4 + +configure: configure.ac aclocal.m4 autoconf + +config.h.in: configure.ac autoheader - automake --add-missing --copy --no-force -gnulib: - $(GNULIB_TOOL) --add-import --no-changelog --m4-base=gl/m4 \ - --source-base=gl --lib=libgl --tests-base=tests \ - --doc-base=gl/doc --aux-dir=build-aux --import \ - --libtool $(GNULIB_MODULES) +Makefile.in: Makefile.am config.h.in aclocal.m4 + automake --add-missing --copy --no-force --include-deps gettextize: -- 2.30.2