moved method_dispatcher to subdirectory

This commit is contained in:
2018-09-26 17:47:22 +02:00
parent 71c633f479
commit 0d8cb5df7c
6 changed files with 51 additions and 51 deletions

View File

@@ -0,0 +1,14 @@
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