From: Ian Jackson Date: Sat, 19 Oct 2019 21:17:37 +0000 (+0100) Subject: build system: Process test-example with autoconf X-Git-Tag: v0.5.0~78 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=secnet.git;a=commitdiff_plain;h=50653a08b63cf54adfcfc717644722d4e6fc5eeb build system: Process test-example with autoconf This makes configure make the directory during out-of-tree builds. Signed-off-by: Ian Jackson --- diff --git a/configure b/configure index 841fe67..58cabb8 100755 --- a/configure +++ b/configure @@ -4735,7 +4735,7 @@ else $as_echo "$as_me: WARNING: Disabling IPv6 support" >&2;} fi -ac_config_files="$ac_config_files Makefile common.make stest/Makefile" +ac_config_files="$ac_config_files Makefile common.make test-example/Makefile stest/Makefile" ac_config_commands="$ac_config_commands default" @@ -5437,6 +5437,7 @@ do "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "common.make") CONFIG_FILES="$CONFIG_FILES common.make" ;; + "test-example/Makefile") CONFIG_FILES="$CONFIG_FILES test-example/Makefile" ;; "stest/Makefile") CONFIG_FILES="$CONFIG_FILES stest/Makefile" ;; "default") CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;; diff --git a/configure.in b/configure.in index c9a9054..65997ef 100644 --- a/configure.in +++ b/configure.in @@ -96,7 +96,8 @@ else AC_MSG_WARN([Disabling IPv6 support]) fi -AC_OUTPUT(Makefile common.make stest/Makefile, echo timestamp >config.stamp) +AC_OUTPUT(Makefile common.make test-example/Makefile stest/Makefile, + echo timestamp >config.stamp) AH_TOP([ #ifndef _CONFIG_H diff --git a/test-example/Makefile b/test-example/Makefile.in similarity index 100% rename from test-example/Makefile rename to test-example/Makefile.in