aboutsummaryrefslogtreecommitdiff
path: root/tests/hello-world
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-07-09 22:25:07 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-07-09 22:25:07 +0300
commit0c6ba17b2f08d05195cdbaeba4607fdd8d000775 (patch)
tree17acd9e959500f5c87c8af7ada943cf218a79f5b /tests/hello-world
parente8a1df103cc28419dd7d4439c0b1d1739d110f78 (diff)
downloadkmi-0c6ba17b2f08d05195cdbaeba4607fdd8d000775.tar.gz
kmi-0c6ba17b2f08d05195cdbaeba4607fdd8d000775.zip
fix make clean
Diffstat (limited to 'tests/hello-world')
-rw-r--r--tests/hello-world/source.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hello-world/source.mk b/tests/hello-world/source.mk
index 203a42e..52d642d 100644
--- a/tests/hello-world/source.mk
+++ b/tests/hello-world/source.mk
@@ -4,5 +4,5 @@ TESTS := $(TESTS) hello-world
hello-world: hello-world/init.c $(COMMON)
mkdir -p build/hello-world
$(COMPILE) hello-world/init.c build/printf.o -o build/hello-world/init
- echo build/hello-world/init | $(GEN_INITRD) hello-world/initrd
- $(QEMU) hello-world/initrd | grep 'Hello, world!'
+ echo build/hello-world/init | $(GEN_INITRD) build/hello-world/initrd
+ $(QEMU) build/hello-world/initrd | grep 'Hello, world!'