diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-08-30 14:14:09 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-08-30 14:14:09 +0000 |
commit | 68a37ee345f3f8f3bdcc8199a73a84a475efae7e (patch) | |
tree | f84f064305127dcea5ed402736f1d3cc1b72ed42 /demos/Win32-MinGW/Makefile | |
parent | 58f6aa17ff1c83c5d0e4ced79c6610b0342e3c30 (diff) | |
download | ChibiOS-68a37ee345f3f8f3bdcc8199a73a84a475efae7e.tar.gz ChibiOS-68a37ee345f3f8f3bdcc8199a73a84a475efae7e.tar.bz2 ChibiOS-68a37ee345f3f8f3bdcc8199a73a84a475efae7e.zip |
New serial driver for Win32 demo.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1142 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/Win32-MinGW/Makefile')
-rw-r--r-- | demos/Win32-MinGW/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/demos/Win32-MinGW/Makefile b/demos/Win32-MinGW/Makefile index 616b46015..50b2a0af2 100644 --- a/demos/Win32-MinGW/Makefile +++ b/demos/Win32-MinGW/Makefile @@ -63,14 +63,17 @@ include ../../test/test.mk SRC = ${KERNSRC} \
${TESTSRC} \
chcore.c \
- ../../os/ports/GCC/win32/simcom.c \
+ ../../os/io/serial.c \
+ ../../os/io/platforms/Win32/serial_lld.c \
main.c
# List ASM source files here
ASRC =
# List all user directories here
-UINCDIR = $(KERNINC) $(TESTINC)
+UINCDIR = $(KERNINC) $(TESTINC) \
+ ../../os/io \
+ ../../os/io/platforms/Win32
# List the user directory to look for the libraries here
ULIBDIR =
|