mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 19:49:56 +00:00
18 lines
510 B
Makefile
18 lines
510 B
Makefile
GCC=g++
|
|
|
|
all: funcbind_test dispatch_map_test sdl_driver_test sdl_binder_test
|
|
|
|
funcbind_test: funcbind_test.cpp ../func_binder.hpp
|
|
$(GCC) $< -o $@
|
|
|
|
dispatch_map_test: dispatch_map_test.cpp ../dispatch_map.hpp
|
|
$(GCC) $< -o $@
|
|
|
|
sdl_driver_test: sdl_driver_test.cpp
|
|
$(GCC) $< ../../mangle/input/servers/sdl_driver.cpp -o $@ -I/usr/include/SDL/ -lSDL -I../../
|
|
|
|
sdl_binder_test: sdl_binder_test.cpp
|
|
$(GCC) $< ../../mangle/input/servers/sdl_driver.cpp -o $@ -I/usr/include/SDL/ -lSDL -I../../
|
|
|
|
clean:
|
|
rm *_test
|