X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/ba6e6b64033b1f9de49feccb5c9cd438354481f7..0f00dc4c8eb47e67bc0f148c2dd109f73a451e0a:/configure.ac diff --git a/configure.ac b/configure.ac index 9aff84a..aca24fe 100644 --- a/configure.ac +++ b/configure.ac @@ -46,6 +46,9 @@ AC_SUBST(AM_CFLAGS) dnl-------------------------------------------------------------------------- dnl C programming environment. +dnl Find out if we're cross-compiling. +AM_CONDITIONAL([CROSS_COMPILING], [test "$cross_compiling" = yes]) + dnl Various standard types. AC_CHECK_TYPE([pid_t], [int]) AC_TYPE_UID_T @@ -119,7 +122,15 @@ dnl Produce output. AC_CONFIG_HEADER([config/config.h]) AC_CONFIG_FILES( - [Makefile]) + [Makefile] + [base/Makefile] + [key/Makefile] + [math/Makefile] + [misc/Makefile] + [pub/Makefile] + [rand/Makefile] + [symm/Makefile] + [progs/Makefile]) AC_OUTPUT dnl----- That's all, folks --------------------------------------------------