diff options
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 |
