mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-24 07:00:01 -05:00
- 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>
18 lines
437 B
Makefile
18 lines
437 B
Makefile
EXTRA_LTLIBRARIES = libcontrol.la
|
|
|
|
libcontrol_la_SOURCES = cards.c tlv.c namehint.c hcontrol.c \
|
|
control.c control_hw.c setup.c ctlparse.c \
|
|
control_symbols.c
|
|
if BUILD_CTL_PLUGIN_SHM
|
|
libcontrol_la_SOURCES += control_shm.c
|
|
endif
|
|
if BUILD_CTL_PLUGIN_EXT
|
|
libcontrol_la_SOURCES += control_ext.c
|
|
endif
|
|
|
|
noinst_HEADERS = control_local.h
|
|
|
|
all: libcontrol.la
|
|
|
|
|
|
AM_CPPFLAGS=-I$(top_srcdir)/include
|