Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v5.19-rc7 12 lines 216 B view raw
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 11 12include ../lib.mk