summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/alsa/Makefile
blob: 8ac22d2eb2ba77735ce5097397687676d7c6bc34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-License-Identifier: GPL-2.0
#

CFLAGS += $(shell pkg-config --cflags alsa)
LDLIBS += $(shell pkg-config --libs alsa)
ifeq ($(LDLIBS),)
LDLIBS += -lasound
endif

TEST_GEN_PROGS := mixer-test pcm-test

pcm-test: pcm-test.c conf.c

include ../lib.mk