diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/coverage/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/test/coverage/Makefile b/test/coverage/Makefile index 687d73233..a00e5015a 100644 --- a/test/coverage/Makefile +++ b/test/coverage/Makefile @@ -57,19 +57,21 @@ UDEFS = UADEFS =
# Imported source files
-include ../../src/kernel.mk
+include ../../os/kernel/kernel.mk
include ../../test/test.mk
# List C source files here
-SRC = chcore.c main.c simcom.c \
- ${KERNSRC} \
- ${TESTSRC}
+SRC = ${KERNSRC} \
+ ${TESTSRC} \
+ chcore.c \
+ simcom.c \
+ main.c
# List ASM source files here
ASRC =
# List all user directories here
-UINCDIR = ../../src/include ../../test
+UINCDIR = $(KERNINC) $(TESTINC)
# List the user directory to look for the libraries here
ULIBDIR =
|