diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2014-01-06 04:51:23 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2014-01-06 04:51:23 +0100 |
commit | cfacca3047d62caa0a6b3f99fe1fbb0919130973 (patch) | |
tree | 89e7c4355c67a07db36e7a50611f3b2d26b990be /mixlib | |
parent | 2974c3715450fe426d18e9cfd07bf2b4f4f30b9f (diff) | |
download | mdk-cfacca3047d62caa0a6b3f99fe1fbb0919130973.tar.gz mdk-cfacca3047d62caa0a6b3f99fe1fbb0919130973.tar.bz2 |
Deprecated INCLUDES in Makefile.am removed
Diffstat (limited to 'mixlib')
-rw-r--r-- | mixlib/Makefile.am | 2 | ||||
-rw-r--r-- | mixlib/testsuite/Makefile.am | 9 |
2 files changed, 3 insertions, 8 deletions
diff --git a/mixlib/Makefile.am b/mixlib/Makefile.am index b38af6d..7a9d1fd 100644 --- a/mixlib/Makefile.am +++ b/mixlib/Makefile.am @@ -12,7 +12,7 @@ SUBDIRS = testsuite -INCLUDES = -I$(includedir) -I$(top_srcdir) -DG_LOG_DOMAIN=\"libmix\" +AM_CFLAGS += -I$(includedir) -I$(top_srcdir) -DG_LOG_DOMAIN=\"libmix\" noinst_LIBRARIES = libmix.a libmix_a_SOURCES = gettext.h \ diff --git a/mixlib/testsuite/Makefile.am b/mixlib/testsuite/Makefile.am index 3878cff..329ab2b 100644 --- a/mixlib/testsuite/Makefile.am +++ b/mixlib/testsuite/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -# Copyright (C) 2000, 2001, 2006 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2006, 2014 Free Software Foundation, Inc. # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without @@ -11,7 +11,7 @@ # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -INCLUDES = -I$(includedir) -I$(top_srcdir) -I$(top_srcdir)/mixlib +AM_CFLAGS += -I$(includedir) -I$(top_srcdir) -I$(top_srcdir)/mixlib LDADD = $(top_builddir)/mixlib/libmix.a check_PROGRAMS = mixtypest mixinstest mixvminstest mixparsertest mixdevtest mixevaltest @@ -30,8 +30,3 @@ mixparsertest_SOURCES = test.h mix_parser_t.c distclean-local: rm -f *.mix - - - - - |