chiark / gitweb /
Infrastructure: Split the files into subdirectories.
[mLib] / configure.ac
index 27f21f5b424ff035ff9623a23366636e36e7910a..d2af6c7b811d1cd6035501adae654df6bf5e5520 100644 (file)
@@ -28,7 +28,7 @@ dnl--------------------------------------------------------------------------
 dnl Initialization.
 
 mdw_AUTO_VERSION
-AC_INIT([mLib], AUTO_VERSION, [mdw@distorted.org.uk])
+AC_INIT([mLib], AUTO_VERSION, [mdw@distorted.org.uk], [mLib])
 AC_CONFIG_SRCDIR([mLib.pc.in])
 AC_CONFIG_AUX_DIR([config])
 AM_INIT_AUTOMAKE([foreign])
@@ -99,7 +99,18 @@ dnl Output.
 AC_CONFIG_HEADER([config/config.h])
 
 AC_CONFIG_FILES(
-  [Makefile])
+  [Makefile]
+  [buf/Makefile]
+  [codec/Makefile]
+  [hash/Makefile]
+  [mem/Makefile]
+  [sel/Makefile]
+  [struct/Makefile]
+  [sys/Makefile]
+  [test/Makefile]
+  [trace/Makefile]
+  [ui/Makefile]
+  [utils/Makefile])
 AC_OUTPUT
 
 dnl ----- That's all, folks -------------------------------------------------