1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-10 21:40:15 +00:00
OpenMW/sound/tests/Makefile

14 lines
365 B
Makefile
Raw Normal View History

GCC=g++ -I../
2009-11-17 18:33:19 +01:00
all: openal_audiere_test
2009-11-17 18:33:19 +01:00
#L_FFMPEG=$(shell pkg-config --libs libavcodec libavformat)
2009-11-17 18:33:19 +01:00
L_OPENAL=$(shell pkg-config --libs openal)
L_AUDIERE=-laudiere
openal_audiere_test: openal_audiere_test.cpp ../sources/audiere_source.cpp ../outputs/openal_out.cpp ../../stream/clients/audiere_file.cpp
$(GCC) $^ -o $@ $(L_AUDIERE) $(L_OPENAL)
2009-11-17 18:33:19 +01:00
clean:
rm *_test