aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/scripts/makefile
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-11-02 16:19:11 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2024-11-02 16:19:11 +0200
commit010152de4f19fcb4f1b627123aa27f08deb13e72 (patch)
tree44a8b65c4d1af8f90c2d7912d000954caad14585 /benchmarks/scripts/makefile
parent21efbba39340300a7ba9d5f4f94017f5ff956833 (diff)
downloadkmi-010152de4f19fcb4f1b627123aa27f08deb13e72.tar.gz
kmi-010152de4f19fcb4f1b627123aa27f08deb13e72.zip
add spawn benchmark
Diffstat (limited to 'benchmarks/scripts/makefile')
-rw-r--r--benchmarks/scripts/makefile5
1 files changed, 4 insertions, 1 deletions
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