diff options
Diffstat (limited to 'scripts/makefile')
-rw-r--r-- | scripts/makefile | 9 |
1 files changed, 6 insertions, 3 deletions
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: |