]> git.saurik.com Git - apt.git/blobdiff - buildlib/configure.mak
Added code to allow SmartConfigure to be called mutiple times on the same package...
[apt.git] / buildlib / configure.mak
index b6a84796110fb093ab4ae5d40b23c14e0a03569e..310c2600c83561bbebb523de522778da01e01faf 100644 (file)
 BUILDDIR=build
 
 .PHONY: startup
-startup: configure $(addprefix $(BUILDDIR)/,$(CONVERTED))
+startup: configure $(BUILDDIR)/config.status $(addprefix $(BUILDDIR)/,$(CONVERTED))
 
-configure: aclocal.m4 configure.in
-       autoconf        
-aclocal.m4:
+# use the files provided from the system instead of carry around
+# and use (most of the time outdated) copycats
+buildlib/config.sub:
+       ln -sf /usr/share/misc/config.sub buildlib/config.sub
+buildlib/config.guess:
+       ln -sf /usr/share/misc/config.guess buildlib/config.guess       
+configure: aclocal.m4 configure.in buildlib/config.guess buildlib/config.sub
+       autoconf
+
+aclocal.m4: $(wildcard buildlib/*.m4)
        aclocal -I buildlib
+       
 $(BUILDDIR)/config.status: configure
-       test -e $(BUILDDIR) || mkdir $(BUILDDIR)        
+       /usr/bin/test -e $(BUILDDIR) || mkdir $(BUILDDIR)       
        (HERE=`pwd`; cd $(BUILDDIR) && $$HERE/configure)
+       
 $(addprefix $(BUILDDIR)/,$(CONVERTED)):
        (cd $(BUILDDIR) && ./config.status)