forked from mirror/openmw-tes3mp
69e8f9c9db
- renamed imp_client/ to clients/ and ditto for servers/ - renamed imp/ to servers/ - renamed stream/input.h to stream/stream.h - renamed Stream::InputStream to Stream::Stream - updated various tests and makefiles - NOT TESTED YET
14 lines
468 B
Makefile
14 lines
468 B
Makefile
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
|