diff options
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/Makefile_Eolian.am | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 182292e..30c2e0d 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -17,7 +17,7 @@ AH_BOTTOM([ | |||
17 | 17 | ||
18 | AM_INIT_AUTOMAKE([1.6 dist-xz no-dist-gzip -Wall color-tests subdir-objects]) | 18 | AM_INIT_AUTOMAKE([1.6 dist-xz no-dist-gzip -Wall color-tests subdir-objects]) |
19 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) | 19 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) |
20 | 20 | AM_CONDITIONAL([HAVE_AM_16], [test $(echo "${am__api_version}"|cut -d. -f2) -ge 16]) | |
21 | # Due to a bug in automake 1.14 we need to use this after AM_INIT_AUTOMAKE | 21 | # Due to a bug in automake 1.14 we need to use this after AM_INIT_AUTOMAKE |
22 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=15981 | 22 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=15981 |
23 | AC_USE_SYSTEM_EXTENSIONS | 23 | AC_USE_SYSTEM_EXTENSIONS |
diff --git a/src/Makefile_Eolian.am b/src/Makefile_Eolian.am index 2b84287..57c5cda 100644 --- a/src/Makefile_Eolian.am +++ b/src/Makefile_Eolian.am | |||
@@ -120,7 +120,11 @@ tests/eolian/eolian_generated_future.c \ | |||
120 | tests/eolian/eolian_suite.c \ | 120 | tests/eolian/eolian_suite.c \ |
121 | tests/eolian/eolian_suite.h | 121 | tests/eolian/eolian_suite.h |
122 | 122 | ||
123 | if HAVE_AM_16 | ||
124 | tests/eolian/eolian_suite-eolian_generated_future.$(OBJEXT): tests/eolian/generated_future.eo.h tests/eolian/generated_future.eo.c | ||
125 | else | ||
123 | tests/eolian/tests_eolian_eolian_suite-eolian_generated_future.$(OBJEXT): tests/eolian/generated_future.eo.h tests/eolian/generated_future.eo.c | 126 | tests/eolian/tests_eolian_eolian_suite-eolian_generated_future.$(OBJEXT): tests/eolian/generated_future.eo.h tests/eolian/generated_future.eo.c |
127 | endif | ||
124 | 128 | ||
125 | CLEANFILES += tests/eolian/generated_future.eo.h tests/eolian/generated_future.eo.c | 129 | CLEANFILES += tests/eolian/generated_future.eo.h tests/eolian/generated_future.eo.c |
126 | 130 | ||