make it build

This commit is contained in:
Loic Nageleisen 2016-03-21 11:31:30 +01:00
parent f109052d8b
commit 55975b0e5f
4 changed files with 17 additions and 8 deletions

View file

@ -1,2 +1,9 @@
all:
clang++ -std=c++11 -stdlib=libc++ coreaudio_example.cc
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