aboutsummaryrefslogtreecommitdiff
path: root/tests/hello-world/source.mk
blob: 203a42e032d05eaed37bada04d5202cd07590735 (plain) (blame)
1
2
3
4
5
6
7
8
TESTS	:= $(TESTS) hello-world

.PHONY: 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!'