diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/makefile b/scripts/makefile index 0b4f42b..3f1e119 100644 --- a/scripts/makefile +++ b/scripts/makefile @@ -61,7 +61,11 @@ COMPILE_EJIT = $(COMPILE) $(EJIT_FLAGS) ejit.o: $(EJIT_OBJS) ld -relocatable $(EJIT_OBJS) -o $@ -examples: examples/loop examples/fib +examples: examples/loop examples/fib examples/matrix_mult + +examples/matrix_mult: examples/matrix_mult.c ejit.o + $(COMPILE_EJIT) examples/matrix_mult.c ejit.o -o $@ + examples/loop: examples/loop.c ejit.o $(COMPILE_EJIT) examples/loop.c ejit.o -o $@ |