From 5893165ddd9e0afb072963a64a408dd9664ea0a3 Mon Sep 17 00:00:00 2001 From: Melinda Shore Date: Tue, 30 Jul 2013 14:55:54 -0800 Subject: [PATCH 1/2] Updated to add executables and config.status --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 478cda0b..91d059d6 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,9 @@ Makefile aclocal.m4 depcomp .deps/ +config.status +example-all-functions +example-simple-answers +example-synchronous +example-tree + From 45a2cda30032d29068a8fe0d0266db949a07b919 Mon Sep 17 00:00:00 2001 From: Melinda Shore Date: Tue, 30 Jul 2013 15:08:21 -0800 Subject: [PATCH 2/2] Fixed missing reference to src/Makefile.in --- configure | 3 ++- configure.ac | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 56db59a6..d7e70711 100755 --- a/configure +++ b/configure @@ -3628,7 +3628,7 @@ _ACEOF esac -ac_config_files="$ac_config_files Makefile src/common/Makefile src/test/Makefile" +ac_config_files="$ac_config_files Makefile src/Makefile src/common/Makefile src/test/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure @@ -4336,6 +4336,7 @@ for ac_config_target in $ac_config_targets do case $ac_config_target in "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "src/common/Makefile") CONFIG_FILES="$CONFIG_FILES src/common/Makefile" ;; "src/test/Makefile") CONFIG_FILES="$CONFIG_FILES src/test/Makefile" ;; diff --git a/configure.ac b/configure.ac index 253b1f6f..75971f3e 100644 --- a/configure.ac +++ b/configure.ac @@ -27,5 +27,5 @@ AC_TYPE_UINT32_T AC_TYPE_UINT64_T AC_TYPE_UINT8_T -AC_CONFIG_FILES([Makefile src/common/Makefile src/test/Makefile]) +AC_CONFIG_FILES([Makefile src/Makefile src/common/Makefile src/test/Makefile]) AC_OUTPUT