This commit is contained in:
2026-02-22 16:08:02 +01:00
parent 4a0a0b9f96
commit 869fa8739f
9 changed files with 315 additions and 15 deletions

11
libao/c/Makefile Normal file
View File

@@ -0,0 +1,11 @@
all:
mkdir -p build
cmake -S ao-play-async -B build
(cd build; make)
install:
(cd build; cp *.so /usr/local/lib)
clean:
rm -rf build