mirror of
https://gitee.com/openharmony/third_party_alsa-lib
synced 2024-12-02 12:56:45 +00:00
b669b50de2
- 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>
13 lines
244 B
Makefile
13 lines
244 B
Makefile
bin_PROGRAMS = aserver
|
|
aserver_SOURCES = aserver.c
|
|
# aserver_LDADD = -lasound
|
|
aserver_LDADD = ../src/libasound.la
|
|
|
|
all: aserver
|
|
|
|
AM_CPPFLAGS=-I$(top_srcdir)/include -I$(top_srcdir)/src/pcm
|
|
|
|
../src/libasound.la:
|
|
$(MAKE) -C ../src libasound.la
|
|
|