1# SPDX-License-Identifier: GPL-2.0 2# 3 4CFLAGS += $(shell pkg-config --cflags alsa) 5LDLIBS += $(shell pkg-config --libs alsa) 6ifeq ($(LDLIBS),) 7LDLIBS += -lasound 8endif 9 10TEST_GEN_PROGS := mixer-test pcm-test 11 12pcm-test: pcm-test.c conf.c 13 14include ../lib.mk 15