2010-06-07 10:44:39 +00:00
|
|
|
GCC=g++
|
|
|
|
|
2010-06-07 12:48:08 +00:00
|
|
|
all: funcbind_test dispatch_map_test event_dispatcher_test
|
2010-06-07 10:44:39 +00:00
|
|
|
|
2010-06-07 12:48:08 +00:00
|
|
|
funcbind_test: funcbind_test.cpp ../func_binder.hpp
|
|
|
|
$(GCC) $< -o $@
|
|
|
|
|
|
|
|
dispatch_map_test: dispatch_map_test.cpp ../dispatch_map.hpp
|
|
|
|
$(GCC) $< -o $@
|
|
|
|
|
|
|
|
event_dispatcher_test: event_dispatcher_test.cpp ../event_dispatcher.hpp
|
|
|
|
$(GCC) $< -o $@
|
2010-06-07 10:44:39 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm *_test
|