blob: 1978732df6a857c8eda266b004ce4fbc52c0515c (
plain)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | .PHONY: all: alsa_test clocktest threaded_memtest .PHONY: clean clean: rm -f alsa_test clocktest threaded_memtest threaded_memtest: CFLAGS += -pthread threaded_memtest: CFLAGS += -Wno-unused-but-set-variable clocktest: CFLAGS += -D_POSIX_C_SOURCE=199309L -D_BSD_SOURCE clocktest: LDLIBS += -lrt alsa_test: CXXFLAGS += -std=c++11 alsa_test: LDLIBS += -lasound -pthread CFLAGS += -Wall
|