diff options
author | Theodore Ateba <tf.ateba@gmail.com> | 2017-07-14 00:39:53 +0000 |
---|---|---|
committer | Theodore Ateba <tf.ateba@gmail.com> | 2017-07-14 00:39:53 +0000 |
commit | c1abc1e06fb61c5b6c9bd6e89815570fde0fdec8 (patch) | |
tree | 77598c6098fc104955585058b7eb59fe696f70ca /demos/AVR/RT-TEENSY2-USB | |
parent | 655eadd2551098ea703ff84e0907f8ac2cfea5b5 (diff) | |
download | ChibiOS-c1abc1e06fb61c5b6c9bd6e89815570fde0fdec8.tar.gz ChibiOS-c1abc1e06fb61c5b6c9bd6e89815570fde0fdec8.tar.bz2 ChibiOS-c1abc1e06fb61c5b6c9bd6e89815570fde0fdec8.zip |
Update AVR demos Makefiles according the new structure.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10327 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/AVR/RT-TEENSY2-USB')
-rw-r--r-- | demos/AVR/RT-TEENSY2-USB/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/demos/AVR/RT-TEENSY2-USB/Makefile b/demos/AVR/RT-TEENSY2-USB/Makefile index 32c4e4b76..6f540b11c 100644 --- a/demos/AVR/RT-TEENSY2-USB/Makefile +++ b/demos/AVR/RT-TEENSY2-USB/Makefile @@ -60,7 +60,7 @@ OBJDIR = . CHIBIOS = ../../.. include $(CHIBIOS)/os/hal/hal.mk include $(CHIBIOS)/os/hal/boards/PJRC_TEENSY_2PLUSPLUS/board.mk -include $(CHIBIOS)/os/hal/ports/AVR/platform.mk +include $(CHIBIOS)/os/hal/ports/AVR/MEGA/platform.mk include $(CHIBIOS)/os/hal/osal/rt/osal.mk include $(CHIBIOS)/os/rt/rt.mk include $(CHIBIOS)/os/common/ports/AVR/compilers/GCC/mk/port.mk @@ -68,15 +68,15 @@ include $(CHIBIOS)/os/hal/lib/streams/streams.mk include $(CHIBIOS)/os/various/shell/shell.mk # List C source files here. (C dependencies are automatically generated.) -SRC = $(KERNSRC) \ - $(PORTSRC) \ - $(OSALSRC) \ - $(HALSRC) \ - $(PLATFORMSRC) \ - $(BOARDSRC) \ - $(STREAMSSRC) \ - $(SHELLSRC) \ - usbcfg.c \ +SRC = $(KERNSRC) \ + $(PORTSRC) \ + $(OSALSRC) \ + $(HALSRC) \ + $(PLATFORMSRC) \ + $(BOARDSRC) \ + $(STREAMSSRC) \ + $(SHELLSRC) \ + usbcfg.c \ main.c # List C++ source files here. (C dependencies are automatically generated.) |