summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasily Khoruzhick <anarsoul@gmail.com>2013-08-12 11:45:17 +0300
committerVasily Khoruzhick <anarsoul@gmail.com>2013-08-19 11:13:50 +0300
commit35e356f625d254f44c14f720c0eb9216297d35c2 (patch)
tree89d4fef16a41d649e4d5348a93e52b5ab891540f
parent948ab02d1a9d321e31dfd501646c29b880c1e5d0 (diff)
build: add subdir-objects option to make automake happy
Without subdir-object automake throws warnings like this one: Makefile.am:x: warning: source file 'drivers/aes2550.c' is in a subdirectory, Makefile.am:x: but option 'subdir-objects' is disabled
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index d9faeb0..34f2eb1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
1AC_INIT([libfprint], [0.5.1]) 1AC_INIT([libfprint], [0.5.1])
2AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz check-news]) 2AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz check-news subdir-objects])
3AC_CONFIG_MACRO_DIR([m4]) 3AC_CONFIG_MACRO_DIR([m4])
4AC_CONFIG_SRCDIR([libfprint/core.c]) 4AC_CONFIG_SRCDIR([libfprint/core.c])
5AC_CONFIG_HEADERS([config.h]) 5AC_CONFIG_HEADERS([config.h])