diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/rt/coverage/Makefile | 14 | ||||
-rw-r--r-- | test/rt/test.mk | 26 |
2 files changed, 20 insertions, 20 deletions
diff --git a/test/rt/coverage/Makefile b/test/rt/coverage/Makefile index d19014202..8a1b3064d 100644 --- a/test/rt/coverage/Makefile +++ b/test/rt/coverage/Makefile @@ -36,7 +36,7 @@ DLIBDIR = # List all default libraries here
DLIBS = -lws2_32
-# Must be a directory in ${CHIBIOS}/os/hal/platforms
+# Must be a directory in $(CHIBIOS)/os/hal/platforms
HOST_TYPE = Win32
#
@@ -62,11 +62,11 @@ UADEFS = # Imported source files
CHIBIOS = ../..
include $(CHIBIOS)/boards/simulator/board.mk
-include ${CHIBIOS}/os/hal/hal.mk
-include ${CHIBIOS}/os/hal/platforms/$(HOST_TYPE)/platform.mk
-include ${CHIBIOS}/os/ports/GCC/SIMIA32/port.mk
-include ${CHIBIOS}/os/kernel/kernel.mk
-include ${CHIBIOS}/test/test.mk
+include $(CHIBIOS)/os/hal/hal.mk
+include $(CHIBIOS)/os/hal/platforms/$(HOST_TYPE)/platform.mk
+include $(CHIBIOS)/os/ports/GCC/SIMIA32/port.mk
+include $(CHIBIOS)/os/kernel/kernel.mk
+include $(CHIBIOS)/test/rt/test.mk
# List C source files here
SRC = ${PORTSRC} \
@@ -75,7 +75,7 @@ SRC = ${PORTSRC} \ ${HALSRC} \
${PLATFORMSRC} \
$(BOARDSRC) \
- ${CHIBIOS}/os/hal/platforms/$(HOST_TYPE)/console.c \
+ $(CHIBIOS)/os/hal/platforms/$(HOST_TYPE)/console.c \
main.c
# List ASM source files here
diff --git a/test/rt/test.mk b/test/rt/test.mk index 3f740288c..d2dcf355d 100644 --- a/test/rt/test.mk +++ b/test/rt/test.mk @@ -1,16 +1,16 @@ # List of all the ChibiOS/RT test files.
-TESTSRC = ${CHIBIOS}/test/test.c \
- ${CHIBIOS}/test/testthd.c \
- ${CHIBIOS}/test/testsem.c \
- ${CHIBIOS}/test/testmtx.c \
- ${CHIBIOS}/test/testmsg.c \
- ${CHIBIOS}/test/testmbox.c \
- ${CHIBIOS}/test/testevt.c \
- ${CHIBIOS}/test/testheap.c \
- ${CHIBIOS}/test/testpools.c \
- ${CHIBIOS}/test/testdyn.c \
- ${CHIBIOS}/test/testqueues.c \
- ${CHIBIOS}/test/testbmk.c
+TESTSRC = ${CHIBIOS}/test/rt/test.c \
+ ${CHIBIOS}/test/rt/testthd.c \
+ ${CHIBIOS}/test/rt/testsem.c \
+ ${CHIBIOS}/test/rt/testmtx.c \
+ ${CHIBIOS}/test/rt/testmsg.c \
+ ${CHIBIOS}/test/rt/testmbox.c \
+ ${CHIBIOS}/test/rt/testevt.c \
+ ${CHIBIOS}/test/rt/testheap.c \
+ ${CHIBIOS}/test/rt/testpools.c \
+ ${CHIBIOS}/test/rt/testdyn.c \
+ ${CHIBIOS}/test/rt/testqueues.c \
+ ${CHIBIOS}/test/rt/testbmk.c
# Required include directories
-TESTINC = ${CHIBIOS}/test
+TESTINC = ${CHIBIOS}/test/rt
|