2009-12-28 13:09:17 +00:00
|
|
|
GCC=g++ -I../
|
2009-11-17 17:33:19 +00:00
|
|
|
|
2010-01-01 17:42:35 +00:00
|
|
|
all: openal_audiere_test
|
2009-11-17 17:33:19 +00:00
|
|
|
|
2010-01-01 17:42:35 +00:00
|
|
|
#L_FFMPEG=$(shell pkg-config --libs libavcodec libavformat)
|
2009-11-17 17:33:19 +00:00
|
|
|
L_OPENAL=$(shell pkg-config --libs openal)
|
|
|
|
L_AUDIERE=-laudiere
|
|
|
|
|
2010-01-01 17:42:35 +00:00
|
|
|
openal_audiere_test: openal_audiere_test.cpp ../sources/audiere_source.cpp ../outputs/openal_out.cpp ../../stream/clients/audiere_file.cpp
|
2009-12-21 20:51:57 +00:00
|
|
|
$(GCC) $^ -o $@ $(L_AUDIERE) $(L_OPENAL)
|
|
|
|
|
2009-11-17 17:33:19 +00:00
|
|
|
clean:
|
|
|
|
rm *_test
|