From f73592503981eaacf1836f0d0049bed2f989212e Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 30 Aug 2020 09:59:03 +0200 Subject: Added kernel testing suit --- kernel/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'kernel/Makefile') diff --git a/kernel/Makefile b/kernel/Makefile index 07f985a..da6a26c 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -26,6 +26,7 @@ CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builti ASFLAGS = -f elf32 all: compile bootloader +test: compile_test bootloader %.o: %.c @$(CC) -c $(CFLAGS) $< -o $@ @@ -41,3 +42,11 @@ compile: $(COBJS) @mkdir -p ../build/ @$(LD) -N -ekernel_main -Ttext 0x00050000 -o ../build/kernel.bin -L../build/ $+ -lk --oformat binary @$(CC) $(CFLAGS) -o ../build/debug.o -L../build/ $+ -lk + +compile_test: CFLAGS += -Dtest -Wl,-etest_all +compile_test: $(COBJS:main.o=test.o) + @mkdir -p ../build/ + @$(LD) -N -etest_all -Ttext 0x00050000 -o ../build/kernel.bin -L../build/ $+ -lk --oformat binary + @$(CC) $(CFLAGS) -o ../build/debug.o -L../build/ $+ -lk + +.PHONY: test compile_test -- cgit v1.2.3