Files
racket-sound/libao/c/Makefile
2026-02-22 16:08:02 +01:00

12 lines
141 B
Makefile

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