diff options
Diffstat (limited to 'demos')
-rw-r--r-- | demos/PPC-SPC560B-GCC/Makefile | 5 | ||||
-rw-r--r-- | demos/PPC-SPC560P-GCC/Makefile | 5 | ||||
-rw-r--r-- | demos/PPC-SPC563M-GCC/Makefile | 5 | ||||
-rw-r--r-- | demos/PPC-SPC564A-GCC/Makefile | 5 | ||||
-rw-r--r-- | demos/PPC-SPC56EL-GCC/Makefile | 5 |
5 files changed, 25 insertions, 0 deletions
diff --git a/demos/PPC-SPC560B-GCC/Makefile b/demos/PPC-SPC560B-GCC/Makefile index 67a818a04..1a594e5e6 100644 --- a/demos/PPC-SPC560B-GCC/Makefile +++ b/demos/PPC-SPC560B-GCC/Makefile @@ -23,6 +23,11 @@ ifeq ($(USE_LINK_GC),) USE_LINK_GC = yes
endif
+# Linker options here.
+ifeq ($(USE_LDOPT),)
+ USE_LDOPT =
+endif
+
# If enabled, this option allows to compile the application in VLE mode.
ifeq ($(USE_VLE),)
USE_VLE = yes
diff --git a/demos/PPC-SPC560P-GCC/Makefile b/demos/PPC-SPC560P-GCC/Makefile index 2f567c047..3949db752 100644 --- a/demos/PPC-SPC560P-GCC/Makefile +++ b/demos/PPC-SPC560P-GCC/Makefile @@ -23,6 +23,11 @@ ifeq ($(USE_LINK_GC),) USE_LINK_GC = yes
endif
+# Linker options here.
+ifeq ($(USE_LDOPT),)
+ USE_LDOPT =
+endif
+
# If enabled, this option allows to compile the application in VLE mode.
ifeq ($(USE_VLE),)
USE_VLE = yes
diff --git a/demos/PPC-SPC563M-GCC/Makefile b/demos/PPC-SPC563M-GCC/Makefile index cb7e7760d..e6098bcab 100644 --- a/demos/PPC-SPC563M-GCC/Makefile +++ b/demos/PPC-SPC563M-GCC/Makefile @@ -23,6 +23,11 @@ ifeq ($(USE_LINK_GC),) USE_LINK_GC = yes
endif
+# Linker options here.
+ifeq ($(USE_LDOPT),)
+ USE_LDOPT =
+endif
+
# If enabled, this option allows to compile the application in VLE mode.
ifeq ($(USE_VLE),)
USE_VLE = yes
diff --git a/demos/PPC-SPC564A-GCC/Makefile b/demos/PPC-SPC564A-GCC/Makefile index 9ae094063..93d437847 100644 --- a/demos/PPC-SPC564A-GCC/Makefile +++ b/demos/PPC-SPC564A-GCC/Makefile @@ -23,6 +23,11 @@ ifeq ($(USE_LINK_GC),) USE_LINK_GC = yes
endif
+# Linker options here.
+ifeq ($(USE_LDOPT),)
+ USE_LDOPT =
+endif
+
# If enabled, this option allows to compile the application in VLE mode.
ifeq ($(USE_VLE),)
USE_VLE = yes
diff --git a/demos/PPC-SPC56EL-GCC/Makefile b/demos/PPC-SPC56EL-GCC/Makefile index 913d339d6..6ff36c810 100644 --- a/demos/PPC-SPC56EL-GCC/Makefile +++ b/demos/PPC-SPC56EL-GCC/Makefile @@ -23,6 +23,11 @@ ifeq ($(USE_LINK_GC),) USE_LINK_GC = yes
endif
+# Linker options here.
+ifeq ($(USE_LDOPT),)
+ USE_LDOPT =
+endif
+
# If enabled, this option allows to compile the application in VLE mode.
ifeq ($(USE_VLE),)
USE_VLE = yes
|