2009-12-26 21:13:06 +00:00
|
|
|
GCC=g++ -I../
|
|
|
|
|
|
|
|
all: ogrevfs_audiere_openal_test
|
|
|
|
|
|
|
|
I_OGRE=$(shell pkg-config --cflags OGRE)
|
|
|
|
L_OGRE=$(shell pkg-config --libs OGRE)
|
|
|
|
L_OPENAL=$(shell pkg-config --libs openal)
|
|
|
|
L_AUDIERE=-laudiere
|
|
|
|
|
2010-01-01 18:52:37 +00:00
|
|
|
ogrevfs_audiere_openal_test: ogrevfs_audiere_openal_test.cpp ../vfs/servers/ogre_vfs.cpp ../sound/sources/audiere_source.cpp ../sound/outputs/openal_out.cpp ../stream/clients/audiere_file.cpp
|
2009-12-26 21:13:06 +00:00
|
|
|
$(GCC) $^ -o $@ $(I_OGRE) $(L_OGRE) $(L_OPENAL) $(L_AUDIERE)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm *_test
|