mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-22 07:53:51 +00:00
15 lines
422 B
Makefile
15 lines
422 B
Makefile
GCC=g++ -Wall
|
|
|
|
all: sdl_driver_test ois_driver_test evtlist_test
|
|
|
|
sdl_driver_test: sdl_driver_test.cpp
|
|
$(GCC) $< ../servers/sdl_driver.cpp -o $@ -I/usr/include/SDL/ -lSDL
|
|
|
|
ois_driver_test: ois_driver_test.cpp
|
|
$(GCC) $< ../servers/ois_driver.cpp -o $@ -I/usr/local/include/OGRE/ -lOgreMain -lOIS -lboost_filesystem
|
|
|
|
evtlist_test: evtlist_test.cpp ../filters/eventlist.hpp ../event.hpp
|
|
$(GCC) $< -o $@
|
|
|
|
clean:
|
|
rm *_test
|