From 7f7b22674ed8e9633cd0e47662508c3641e9f967 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Tue, 22 Oct 2024 17:40:09 +0300 Subject: use type-specific vectors instead of generic ones + An attempt at speeding up function calls in the interpreted mode --- scripts/makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'scripts/makefile') diff --git a/scripts/makefile b/scripts/makefile index b8978f6..c1de16e 100644 --- a/scripts/makefile +++ b/scripts/makefile @@ -57,9 +57,12 @@ COMPILE_EJIT = $(COMPILE) $(EJIT_FLAGS) ejit.o: $(EJIT_OBJS) ld -relocatable $(EJIT_OBJS) -o $@ -examples: examples/exec -examples/exec: examples/main.c ejit.o - $(COMPILE_EJIT) examples/main.c ejit.o -o $@ +examples: examples/loop examples/fib +examples/loop: examples/loop.c ejit.o + $(COMPILE_EJIT) examples/loop.c ejit.o -o $@ + +examples/fib: examples/fib.c ejit.o + $(COMPILE_EJIT) examples/fib.c ejit.o -o $@ # might lint some common things twice .PHONY: -- cgit v1.2.3