aboutsummaryrefslogtreecommitdiff
path: root/tests/hello-world/source.mk
blob: 52d642d216b5f955896f6a8a262940fc6b2a2813 (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) build/hello-world/initrd
	$(QEMU) build/hello-world/initrd | grep 'Hello, world!'