build: add subdir-objects option to make automake happy
Without subdir-object automake throws warnings like this one: Makefile.am❌ warning: source file 'drivers/aes2550.c' is in a subdirectory, Makefile.am❌ but option 'subdir-objects' is disabled
This commit is contained in:
parent
948ab02d1a
commit
35e356f625
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
AC_INIT([libfprint], [0.5.1])
|
||||
AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz check-news])
|
||||
AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz check-news subdir-objects])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AC_CONFIG_SRCDIR([libfprint/core.c])
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
|
|
Loading…
Reference in a new issue