diff options
author | Theodore Ateba <tf.ateba@gmail.com> | 2017-07-14 00:40:02 +0000 |
---|---|---|
committer | Theodore Ateba <tf.ateba@gmail.com> | 2017-07-14 00:40:02 +0000 |
commit | 6da6afca5fc97ae2ccebfcb3f460271da2919e9a (patch) | |
tree | a66e9f6a45ce0652f21ec9ac9b4a922d5c8e438b /testhal/AVR/GPT/Makefile | |
parent | c1abc1e06fb61c5b6c9bd6e89815570fde0fdec8 (diff) | |
download | ChibiOS-6da6afca5fc97ae2ccebfcb3f460271da2919e9a.tar.gz ChibiOS-6da6afca5fc97ae2ccebfcb3f460271da2919e9a.tar.bz2 ChibiOS-6da6afca5fc97ae2ccebfcb3f460271da2919e9a.zip |
Update AVR testhal Makefiles according the new structure.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10328 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/AVR/GPT/Makefile')
-rw-r--r-- | testhal/AVR/GPT/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/testhal/AVR/GPT/Makefile b/testhal/AVR/GPT/Makefile index b1b164e80..54baefdaa 100644 --- a/testhal/AVR/GPT/Makefile +++ b/testhal/AVR/GPT/Makefile @@ -60,20 +60,20 @@ OBJDIR = . CHIBIOS = ../../..
include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/hal/boards/ARDUINO_MEGA/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
include $(CHIBIOS)/os/hal/lib/streams/streams.mk
# List C source files here. (C dependencies are automatically generated.)
-SRC = $(KERNSRC) \
- $(PORTSRC) \
- $(OSALSRC) \
- $(HALSRC) \
- $(PLATFORMSRC) \
- $(BOARDSRC) \
- $(STREAMSSRC) \
+SRC = $(KERNSRC) \
+ $(PORTSRC) \
+ $(OSALSRC) \
+ $(HALSRC) \
+ $(PLATFORMSRC) \
+ $(BOARDSRC) \
+ $(STREAMSSRC) \
$(CHIBIOS)/os/various/evtimer.c \
main.c
|