15 lines
244 B
Makefile
15 lines
244 B
Makefile
|
CC=gcc
|
||
|
|
||
|
all: test_method_dispatcher
|
||
|
|
||
|
method_dispatcher: clean
|
||
|
$(CC) ../method_dispatcher.c test_method_dispatcher.c -o method_dispatcher
|
||
|
|
||
|
test_method_dispatcher: method_dispatcher
|
||
|
valgrind ./method_dispatcher
|
||
|
|
||
|
|
||
|
|
||
|
clean:
|
||
|
-rm method_dispatcher
|