mirror of
https://github.com/lloeki/coreaudio_example.git
synced 2025-12-06 03:04:38 +01:00
9 lines
204 B
Makefile
9 lines
204 B
Makefile
all: example
|
|
|
|
example:
|
|
clang++ -std=c++11 -stdlib=libc++ -Wl,-framework,CoreAudio -Wl,-framework,AudioUnit coreaudio_example.cc coreaudio_example_main.cc -o example
|
|
|
|
clean:
|
|
rm -rf example
|
|
|
|
PHONY: clean
|