1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-11 09:36:37 +00:00
OpenMW/stream/tests/Makefile

23 lines
719 B
Makefile
Raw Normal View History

GCC=g++ -I../
all: ogre_client_test dummy_test audiere_client_test
I_OGRE=$(shell pkg-config --cflags OGRE)
L_OGRE=$(shell pkg-config --libs OGRE)
L_AUDIERE=-laudiere
2009-12-29 15:16:33 +00:00
ogre_client_test: ogre_client_test.cpp ../stream.h ../clients/iwrapper.h ../clients/ogre_datastream.h
$(GCC) $< -o $@ $(I_OGRE) $(L_OGRE)
2009-12-29 15:16:33 +00:00
audiere_client_test: audiere_client_test.cpp ../stream.h ../clients/iwrapper.h ../clients/audiere_file.h ../clients/audiere_file.cpp
$(GCC) $< -o $@ ../clients/audiere_file.cpp $(L_AUDIERE)
2009-12-29 15:16:33 +00:00
memory_test: memory_test.cpp ../stream.h ../servers/memory_stream.h
$(GCC) $< -o $@
buffer_test: buffer_test.cpp ../stream.h ../servers/memory_stream.h ../filters/buffer_stream.h
$(GCC) $< -o $@
clean:
rm *_test