BCI-base/method_dispatcher/test/Makefile

15 lines
247 B
Makefile
Raw Normal View History

2018-09-26 11:18:37 +00:00
CC=gcc
all: test_method_dispatcher
method_dispatcher: clean
2018-09-26 16:22:36 +00:00
$(CC) -g ../method_dispatcher.c test_method_dispatcher.c -o method_dispatcher
2018-09-26 11:18:37 +00:00
test_method_dispatcher: method_dispatcher
valgrind ./method_dispatcher
clean:
-rm method_dispatcher