diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-11-02 16:19:11 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-11-02 16:19:11 +0200 |
| commit | 010152de4f19fcb4f1b627123aa27f08deb13e72 (patch) | |
| tree | 44a8b65c4d1af8f90c2d7912d000954caad14585 /benchmarks/scripts/makefile | |
| parent | 21efbba39340300a7ba9d5f4f94017f5ff956833 (diff) | |
| download | kmi-010152de4f19fcb4f1b627123aa27f08deb13e72.tar.gz kmi-010152de4f19fcb4f1b627123aa27f08deb13e72.zip | |
add spawn benchmark
Diffstat (limited to 'benchmarks/scripts/makefile')
| -rw-r--r-- | benchmarks/scripts/makefile | 5 |
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 |
