mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-23 00:34:03 +02:00
12 lines
505 B
Bash
12 lines
505 B
Bash
#!/bin/bash
|
|
cc ma_test_0.c -o ./bin/ma_test_0 -Wall -ldl -lpthread -lm
|
|
c++ ma_test_0.c -o ./bin/ma_test_0_cpp -Wall -ldl -lpthread -lm
|
|
|
|
cc ma_profiling.c -o ./bin/ma_profiling -Wall -ldl -lpthread -lm
|
|
c++ ma_profiling.c -o ./bin/ma_profiling_cpp -Wall -ldl -lpthread -lm
|
|
|
|
cc ma_dithering.c -o ./bin/ma_dithering -Wall -ldl -lpthread -lm
|
|
c++ ma_dithering.c -o ./bin/ma_dithering_cpp -Wall -ldl -lpthread -lm
|
|
|
|
cc ma_duplex.c -o ./bin/ma_duplex -Wall -ldl -lpthread -lm
|