From 101abffec41b91c49acdd1bab64fe29b5602fcec Mon Sep 17 00:00:00 2001 From: Kristian Sloth Lauszus Date: Wed, 2 May 2018 02:53:54 +0200 Subject: [PATCH] Moved the linker script into the source directory --- right/Makefile | 2 +- right/{ => src}/link/MK22FN512xxx12_flash.ld | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename right/{ => src}/link/MK22FN512xxx12_flash.ld (100%) diff --git a/right/Makefile b/right/Makefile index ec7edf1..c05fdec 100644 --- a/right/Makefile +++ b/right/Makefile @@ -20,7 +20,7 @@ PROJECT_NAME = uhk_right PART = MK22FN512VLH12 # Defines the linker script to use for the application. -LDSCRIPT = link/MK22FN512xxx12_flash.ld +LDSCRIPT = src/link/MK22FN512xxx12_flash.ld # Size of the heap and stack. HEAP_SIZE = 0x2000 diff --git a/right/link/MK22FN512xxx12_flash.ld b/right/src/link/MK22FN512xxx12_flash.ld similarity index 100% rename from right/link/MK22FN512xxx12_flash.ld rename to right/src/link/MK22FN512xxx12_flash.ld