]> git.decadent.org.uk Git - dak.git/blobdiff - tools/dsync-0.0/buildlib/configure.mak
Added another tool used in dak (and placed nowhere else), dsync
[dak.git] / tools / dsync-0.0 / buildlib / configure.mak
diff --git a/tools/dsync-0.0/buildlib/configure.mak b/tools/dsync-0.0/buildlib/configure.mak
new file mode 100644 (file)
index 0000000..2124ef8
--- /dev/null
@@ -0,0 +1,27 @@
+# -*- make -*-
+
+# This make fragment is included by the toplevel make to handle configure
+# and setup. It defines a target called startup that when run will init
+# the build directory, generate configure from configure.in, create aclocal
+# and has rules to run config.status should one of the .in files change.
+
+# Input
+#  BUILDDIR - The build directory
+#  CONVERTED - List of files output by configure $(BUILD) is prepended
+#              The caller must provide depends for these files
+# It would be a fairly good idea to run this after a cvs checkout.
+BUILDDIR=build
+
+.PHONY: startup
+startup: configure $(BUILDDIR)/config.status $(addprefix $(BUILDDIR)/,$(CONVERTED)) 
+
+configure: aclocal.m4 configure.in
+       autoconf
+
+aclocal.m4:
+       aclocal -I buildlib
+$(BUILDDIR)/config.status: configure
+       test -e $(BUILDDIR) || mkdir $(BUILDDIR)        
+       (HERE=`pwd`; cd $(BUILDDIR) && $$HERE/configure)
+$(addprefix $(BUILDDIR)/,$(CONVERTED)):
+       (cd $(BUILDDIR) && ./config.status)