mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
13 lines
242 B
Makefile
13 lines
242 B
Makefile
|
|
bin_PROGRAMS = aserver
|
|
aserver_SOURCES = aserver.c
|
|
# aserver_LDADD = -lasound
|
|
aserver_LDADD = ../src/libasound.la
|
|
|
|
all: aserver
|
|
|
|
INCLUDES=-I$(top_srcdir)/include -I$(top_srcdir)/src/pcm
|
|
|
|
../src/libasound.la:
|
|
$(MAKE) -C ../src libasound.la
|
|
|