diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-11-04 10:51:23 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-11-04 10:51:23 +0000 |
commit | 476270c2ab91169a8e731562b0e68b86602e0d77 (patch) | |
tree | 08407b10b44bea3e84b37b6796da967229c02571 /demos/various/RT-Win32-Simulator/Makefile | |
parent | 5626d9925ff6fafabac43ae65c38a290fd2c0db6 (diff) | |
download | ChibiOS-476270c2ab91169a8e731562b0e68b86602e0d77.tar.gz ChibiOS-476270c2ab91169a8e731562b0e68b86602e0d77.tar.bz2 ChibiOS-476270c2ab91169a8e731562b0e68b86602e0d77.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7475 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/various/RT-Win32-Simulator/Makefile')
-rw-r--r-- | demos/various/RT-Win32-Simulator/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/demos/various/RT-Win32-Simulator/Makefile b/demos/various/RT-Win32-Simulator/Makefile index d6499dd77..7621091b1 100644 --- a/demos/various/RT-Win32-Simulator/Makefile +++ b/demos/various/RT-Win32-Simulator/Makefile @@ -60,16 +60,18 @@ CHIBIOS = ../../.. include $(CHIBIOS)/os/hal/boards/simulator/board.mk
include ${CHIBIOS}/os/hal/hal.mk
include ${CHIBIOS}/os/hal/ports/simulator/win32/platform.mk
+include $(CHIBIOS)/os/hal/osal/rt/osal.mk
include ${CHIBIOS}/os/rt/ports/SIMIA32/compilers/GCC/port.mk
include ${CHIBIOS}/os/rt/rt.mk
include ${CHIBIOS}/test/rt/test.mk
# List C source files here
-SRC = ${PORTSRC} \
- ${KERNSRC} \
- ${TESTSRC} \
- ${HALSRC} \
- ${PLATFORMSRC} \
+SRC = $(PORTSRC) \
+ $(KERNSRC) \
+ $(TESTSRC) \
+ $(HALSRC) \
+ $(OSALSRC) \
+ $(PLATFORMSRC) \
$(BOARDSRC) \
${CHIBIOS}/os/various/shell.c \
${CHIBIOS}/os/various/memstreams.c \
@@ -81,7 +83,7 @@ ASRC = # List all user directories here
UINCDIR = $(PORTINC) $(KERNINC) $(TESTINC) \
- $(HALINC) $(PLATFORMINC) $(BOARDINC) \
+ $(HALINC) $(OSALINC) $(PLATFORMINC) $(BOARDINC) \
${CHIBIOS}/os/various
# List the user directory to look for the libraries here
|