From 0e70fa4865c94bbaaa5d6f62396c13b43a3c6676 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Wed, 3 Jan 2024 14:45:38 +0100 Subject: Initial files --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e4157e5 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +default: alsa + +CXXLIBS=$(shell pkg-config --libs alsa) -lreichwein -lfmt + +alsa: alsa.cpp + $(CXX) $(CXXFLAGS) -O2 -g -Wall -o $@ $^ $(CXXLIBS) + +clean: + rm -f alsa + +sound: + ffmpeg -i Bmw_M3_f80_StartUp.wav -f s16le -af "pan=mono|c0=c1" Bmw_M3_f80_StartUp.s16le -- cgit v1.2.3