aboutsummaryrefslogtreecommitdiffstats
path: root/demos/AVR-ATmega128-GCC/Makefile
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-08-26 13:34:52 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-08-26 13:34:52 +0000
commit46827225678cea64b9519813fb60d5a0d388676f (patch)
tree5af3f158ec732acd47282e303ed461245ed881a2 /demos/AVR-ATmega128-GCC/Makefile
parent6b9e823237f11f44f70044d6cdc81751fca5b3b3 (diff)
downloadChibiOS-46827225678cea64b9519813fb60d5a0d388676f.tar.gz
ChibiOS-46827225678cea64b9519813fb60d5a0d388676f.tar.bz2
ChibiOS-46827225678cea64b9519813fb60d5a0d388676f.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1106 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/AVR-ATmega128-GCC/Makefile')
-rw-r--r--demos/AVR-ATmega128-GCC/Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/demos/AVR-ATmega128-GCC/Makefile b/demos/AVR-ATmega128-GCC/Makefile
index c13d60ef9..4af1c53db 100644
--- a/demos/AVR-ATmega128-GCC/Makefile
+++ b/demos/AVR-ATmega128-GCC/Makefile
@@ -89,9 +89,10 @@ include ../../test/test.mk
SRC = ${PORTSRC} \
${KERNSRC} \
${TESTSRC} \
- ../../os/ports/GCC/AVR/avr_serial.c \
+ ../../os/io/serial.c \
+ ../../os/io/platforms/AVR/serial_lld.c \
../../os/various/evtimer.c \
- board.c lcd.c main.c
+ board.c main.c
# List C++ source files here. (C dependencies are automatically generated.)
@@ -125,7 +126,10 @@ DEBUG = dwarf-2
# Each directory must be seperated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
-EXTRAINCDIRS = $(PORTINC) $(KERNINC) $(TESTINC)e ../../os/various
+EXTRAINCDIRS = $(PORTINC) $(KERNINC) $(TESTINC) \
+ ../../os/io \
+ ../../os/io/platforms/AVR \
+ ../../os/various
# Compiler flag to set the C Standard level.