Makefile.am: enable the "subdir-objects" option

Don't clutter the top directory with *.o files.
This commit is contained in:
Max Kellermann 2009-10-22 18:23:22 +02:00
parent a05d0d5d94
commit fd182f6d1e
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = foreign 1.10 dist-bzip2
AUTOMAKE_OPTIONS = foreign 1.10 dist-bzip2 subdir-objects
AM_CPPFLAGS = -I$(srcdir)/src $(GLIB_CFLAGS)

View File

@ -1,7 +1,7 @@
AC_PREREQ(2.60)
AC_INIT(mpd, 0.16~git, musicpd-dev-team@lists.sourceforge.net)
AC_CONFIG_SRCDIR([src/main.c])
AM_INIT_AUTOMAKE([foreign 1.10 dist-bzip2])
AM_INIT_AUTOMAKE([foreign 1.10 dist-bzip2 subdir-objects])
AM_CONFIG_HEADER(config.h)
AC_CONFIG_MACRO_DIR([m4])