From: Miroslav Lichvar Date: Fri, 21 Mar 2008 09:56:43 +0000 (+0100) Subject: fix archive dependencies in Makefile X-Git-Tag: r0-52-9~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f2ca804c65099e62ba12c2aebbe87e7bafca765f;p=thirdparty%2Fnewt.git fix archive dependencies in Makefile --- diff --git a/Makefile.in b/Makefile.in index 892f4d1..2d238f9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -131,12 +131,11 @@ install-sh: sharedlib $(WHIPTCLSO) _snackmodule.so install -m 644 snack.py $(instroot)/$(libdir)/$$ver/site-packages ;\ done -configure: configure.ac newt.spec - autoconf +Makefile: newt.spec echo "You need to rerun ./configure before continuing" - exit 1 + @exit 1 -create-archive: configure +create-archive: Makefile @rm -rf /tmp/newt-$(VERSION) @git archive --prefix=newt-$(VERSION)/ $(TAG) | tar x -C /tmp @cd /tmp/newt-$(VERSION) && ./autogen.sh && rm -rf autom4te.cache @@ -147,7 +146,7 @@ create-archive: configure @echo " " @echo "The final archive is ./newt-$(VERSION).tar.gz." -tag-archive: +tag-archive: Makefile @git tag $(TAG) archive: tag-archive create-archive