aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-12-26 15:46:25 -0500
committerKevin O'Connor <kevin@koconnor.net>2019-01-07 19:33:26 -0500
commite278552d44e2d795e335ec33f898c9d6e1413688 (patch)
tree1abf075ce7c6d8f9b2de64126cb0b7e2076748f1 /src
parent70bbdf93347c814ae39b1cd04d04fd66706a8b7e (diff)
downloadkutter-e278552d44e2d795e335ec33f898c9d6e1413688.tar.gz
kutter-e278552d44e2d795e335ec33f898c9d6e1413688.tar.xz
kutter-e278552d44e2d795e335ec33f898c9d6e1413688.zip
lib: Rename lib/cmsis-sam4e/ to lib/sam4e/
This is in preparation for merging the sam3 and sam4 code. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r--src/sam4e8e/Makefile13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/sam4e8e/Makefile b/src/sam4e8e/Makefile
index 4eda793d..a80741bf 100644
--- a/src/sam4e8e/Makefile
+++ b/src/sam4e8e/Makefile
@@ -7,16 +7,13 @@ dirs-y += src/sam4e8e src/generic
CFLAGS += -mthumb -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard
CFLAGS += -D__SAM4E8E__
-CFLAGS_klipper.elf += -L lib/cmsis-sam4e/gcc/gcc
-CFLAGS_klipper.elf += -T lib/cmsis-sam4e/gcc/gcc/sam4e8e_flash.ld
+CFLAGS_klipper.elf += -L lib/sam4e/gcc/gcc
+CFLAGS_klipper.elf += -T lib/sam4e/gcc/gcc/sam4e8e_flash.ld
CFLAGS_klipper.elf += --specs=nano.specs --specs=nosys.specs
-dirs-y += lib/cmsis-sam4e/gcc \
- lib/cmsis-sam4e/gcc/gcc
-CFLAGS += -Ilib/cmsis-sam4e/include \
- -Ilib/cmsis-core
-src-y += ../lib/cmsis-sam4e/gcc/system_sam4e.c \
- ../lib/cmsis-sam4e/gcc/gcc/startup_sam4e.c
+dirs-y += lib/sam4e/gcc lib/sam4e/gcc/gcc
+CFLAGS += -Ilib/sam4e/include -Ilib/cmsis-core
+src-y += ../lib/sam4e/gcc/system_sam4e.c ../lib/sam4e/gcc/gcc/startup_sam4e.c
src-$(CONFIG_HAVE_GPIO_SPI) += sam4e8e/spi.c
src-$(CONFIG_HAVE_GPIO_I2C) += sam4e8e/i2c.c