chiark / gitweb /
precomp: New directory for precomputed files.
[mLib] / configure.ac
index e71e10f3dcec119b4ada710822df5fdede70c37d..107b49b36832ea368c4f701f7155f067582786b7 100644 (file)
@@ -60,6 +60,9 @@ AC_CHECK_MEMBERS([struct msgdr.msg_control],,, [
 #include <sys/socket.h>
 ])
 
+dnl Find out whether we're cross-compiling.
+AM_CONDITIONAL([CROSS_COMPILING], [test "$cross_compiling" = yes ])
+
 dnl--------------------------------------------------------------------------
 dnl Name resolution.
 
@@ -100,7 +103,17 @@ AC_CONFIG_HEADER([config/config.h])
 
 AC_CONFIG_FILES(
   [Makefile]
-  [man/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 -------------------------------------------------