diff options
author | Patrick Welche <prlw1@cam.ac.uk> | 2014-02-25 12:40:21 +0000 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-02-26 08:16:22 +0100 |
commit | b669b50de2c0d0f18db924a4a5b556ffcc094421 (patch) | |
tree | 2312a282a66d47466bb9179b67e71f6eea06396c /src | |
parent | 7a6e8ca348c4c2640cbc337914d1376333fdbc17 (diff) |
autotools: update style
- rename configure.in to configure.ac
- replace INCLUDES with AM_CPPFLAGS
- modernize AM_INIT_AUTOMAKE invocation
Signed-off-by: Patrick Welche <prlw1@cam.ac.uk>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/alisp/Makefile.am | 2 | ||||
-rw-r--r-- | src/control/Makefile.am | 2 | ||||
-rw-r--r-- | src/hwdep/Makefile.am | 2 | ||||
-rw-r--r-- | src/mixer/Makefile.am | 2 | ||||
-rw-r--r-- | src/pcm/Makefile.am | 2 | ||||
-rw-r--r-- | src/rawmidi/Makefile.am | 2 | ||||
-rw-r--r-- | src/seq/Makefile.am | 2 | ||||
-rw-r--r-- | src/timer/Makefile.am | 2 | ||||
-rw-r--r-- | src/ucm/Makefile.am | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 8f789fec..fa255ff4 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -87,4 +87,4 @@ instr/libinstr.la: alisp/libalisp.la: $(MAKE) -C alisp libalisp.la -INCLUDES=-I$(top_srcdir)/include +AM_CPPFLAGS=-I$(top_srcdir)/include diff --git a/src/alisp/Makefile.am b/src/alisp/Makefile.am index e6d4ac53..1234e111 100644 --- a/src/alisp/Makefile.am +++ b/src/alisp/Makefile.am @@ -8,4 +8,4 @@ noinst_HEADERS = alisp_local.h all: libalisp.la -INCLUDES=-I$(top_srcdir)/include +AM_CPPFLAGS=-I$(top_srcdir)/include diff --git a/src/control/Makefile.am b/src/control/Makefile.am index 8076c732..3d476a21 100644 --- a/src/control/Makefile.am +++ b/src/control/Makefile.am @@ -15,4 +15,4 @@ noinst_HEADERS = control_local.h all: libcontrol.la -INCLUDES=-I$(top_srcdir)/include +AM_CPPFLAGS=-I$(top_srcdir)/include diff --git a/src/hwdep/Makefile.am b/src/hwdep/Makefile.am index 0b626b90..b543e581 100644 --- a/src/hwdep/Makefile.am +++ b/src/hwdep/Makefile.am @@ -5,4 +5,4 @@ noinst_HEADERS = hwdep_local.h all: libhwdep.la -INCLUDES=-I$(top_srcdir)/include +AM_CPPFLAGS=-I$(top_srcdir)/include diff --git a/src/mixer/Makefile.am b/src/mixer/Makefile.am index c0749a47..6eeff8af 100644 --- a/src/mixer/Makefile.am +++ b/src/mixer/Makefile.am @@ -11,4 +11,4 @@ noinst_HEADERS = mixer_local.h mixer_simple.h all: libmixer.la -INCLUDES=-I$(top_srcdir)/include +AM_CPPFLAGS=-I$(top_srcdir)/include diff --git a/src/pcm/Makefile.am b/src/pcm/Makefile.am index 28faa542..81598f63 100644 --- a/src/pcm/Makefile.am +++ b/src/pcm/Makefile.am @@ -114,4 +114,4 @@ alsadir = $(datadir)/alsa all: libpcm.la -INCLUDES=-I$(top_srcdir)/include +AM_CPPFLAGS=-I$(top_srcdir)/include diff --git a/src/rawmidi/Makefile.am b/src/rawmidi/Makefile.am index 2470c7ad..41858a1f 100644 --- a/src/rawmidi/Makefile.am +++ b/src/rawmidi/Makefile.am @@ -9,4 +9,4 @@ noinst_HEADERS = rawmidi_local.h all: librawmidi.la -INCLUDES=-I$(top_srcdir)/include +AM_CPPFLAGS=-I$(top_srcdir)/include diff --git a/src/seq/Makefile.am b/src/seq/Makefile.am index 1ea92f02..6cefe397 100644 --- a/src/seq/Makefile.am +++ b/src/seq/Makefile.am @@ -10,4 +10,4 @@ noinst_HEADERS = seq_local.h all: libseq.la -INCLUDES=-I$(top_srcdir)/include +AM_CPPFLAGS=-I$(top_srcdir)/include diff --git a/src/timer/Makefile.am b/src/timer/Makefile.am index e7cf77b6..7cfbe455 100644 --- a/src/timer/Makefile.am +++ b/src/timer/Makefile.am @@ -6,4 +6,4 @@ noinst_HEADERS = timer_local.h all: libtimer.la -INCLUDES=-I$(top_srcdir)/include +AM_CPPFLAGS=-I$(top_srcdir)/include diff --git a/src/ucm/Makefile.am b/src/ucm/Makefile.am index 7435d903..9d66b244 100644 --- a/src/ucm/Makefile.am +++ b/src/ucm/Makefile.am @@ -7,4 +7,4 @@ noinst_HEADERS = ucm_local.h all: libucm.la -INCLUDES=-I$(top_srcdir)/include +AM_CPPFLAGS=-I$(top_srcdir)/include |