1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-23 11:53:53 +00:00
openmw/tests/Makefile

15 lines
468 B
Makefile
Raw Normal View History

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
ogrevfs_audiere_openal_test: ogrevfs_audiere_openal_test.cpp ../vfs/servers/ogre_vfs.cpp ../sound/servers/input_audiere.cpp ../sound/servers/output_openal.cpp ../stream/clients/audiere_file.cpp
$(GCC) $^ -o $@ $(I_OGRE) $(L_OGRE) $(L_OPENAL) $(L_AUDIERE)
clean:
rm *_test