From 083e46d5d23d2105e2df1adc769700fb579c9597 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Thu, 2 Jan 2025 13:14:08 +0100 Subject: Initial commit --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..eb05671 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +default: alsa + +CXXLIBS=$(shell pkg-config --libs alsa) -lreichwein -lfmt +CXX=clang++ + +alsa: alsa.cpp + $(CXX) $(CXXFLAGS) -std=c++20 -O2 -g -Wall -o $@ $^ $(CXXLIBS) + +clean: + rm -f alsa + +sound: + ffmpeg -i media/click.wav -f s16le media/click.s16le -- cgit v1.2.3