From 010152de4f19fcb4f1b627123aa27f08deb13e72 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 2 Nov 2024 16:19:11 +0200 Subject: add spawn benchmark --- benchmarks/scripts/makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'benchmarks/scripts/makefile') diff --git a/benchmarks/scripts/makefile b/benchmarks/scripts/makefile index 7140c05..f862305 100644 --- a/benchmarks/scripts/makefile +++ b/benchmarks/scripts/makefile @@ -32,11 +32,14 @@ QEMU := qemu-system-$(ARCH) -machine virt -kernel ../kmi.bin \ -initrd KMI := ../kmi.bin -COMMON := build/printf.o +COMMON := build/printf.o build/string.o build/printf.o: common/printf.c $(KMI) $(COMPILE_BENCHMARK) -c common/printf.c -o build/printf.o +build/string.o: common/string.c $(KMI) + $(COMPILE_BENCHMARK) -c common/string.c -o build/string.o + BENCHMARKS := include benchmarks.mk -- cgit v1.3