new target to get the config.sub and config.guess files - needed since Libtool was removed

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6106 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2004-08-22 20:21:34 +00:00
commit 350d4aab5e

View file

@ -403,4 +403,13 @@ srcrpm:
rm -fr $(srpm)
rpmbuild -ts $(srpm).tar.gz
# Update the autoconf files for detecting host/targets. Automake will do this in
# version 1.10 for our case of not having a top level Makefile.am. Until then we
# can fetch them manually and will have to commit them to CVS.
configfiles:
wget ftp://ftp.gnu.org/pub/gnu/config/config.guess -O Tools/config/config.guess
chmod a+x Tools/config/config.guess
wget ftp://ftp.gnu.org/pub/gnu/config/config.sub -O Tools/config/config.sub
chmod a+x Tools/config/config.sub
# Makefile ends here