aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchrysn2012-10-19 17:03:23 +0200
committerchrysn2012-10-19 17:03:23 +0200
commit12107388451e1af87f1efd6ddea2bc41f01945a1 (patch)
treefd2cd662b26f59a1fc5fe52e6b4b0abc8c8698d2
parentcece71ba2fbb750f8c6cfe57121748a9ab626205 (diff)
add generic OBJS to efm32 libraries
better fixes would be adding them to the generic (included) Makefile or building the really device independent stuff in a _generic library
-rw-r--r--lib/efm32/efm32g/Makefile2
-rw-r--r--lib/efm32/efm32gg/Makefile2
-rw-r--r--lib/efm32/efm32lg/Makefile2
-rw-r--r--lib/efm32/efm32tg/Makefile2
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/efm32/efm32g/Makefile b/lib/efm32/efm32g/Makefile
index 923be47..c368794 100644
--- a/lib/efm32/efm32g/Makefile
+++ b/lib/efm32/efm32g/Makefile
@@ -30,7 +30,7 @@ CFLAGS = -Os -g -Wall -Wextra -I../../../include -fno-common \
-ffunction-sections -fdata-sections -MD -D$(FAMILY)
# ARFLAGS = rcsv
ARFLAGS = rcs
-OBJS = vector.o
+OBJS = vector.o systick.o scb.o nvic.o assert.o
VPATH += ../:../../cm3
diff --git a/lib/efm32/efm32gg/Makefile b/lib/efm32/efm32gg/Makefile
index 0d9d0bd..27e2235 100644
--- a/lib/efm32/efm32gg/Makefile
+++ b/lib/efm32/efm32gg/Makefile
@@ -30,7 +30,7 @@ CFLAGS = -Os -g -Wall -Wextra -I../../../include -fno-common \
-ffunction-sections -fdata-sections -MD -D$(FAMILY)
# ARFLAGS = rcsv
ARFLAGS = rcs
-OBJS = vector.o
+OBJS = vector.o systick.o scb.o nvic.o assert.o
VPATH += ../:../../cm3
diff --git a/lib/efm32/efm32lg/Makefile b/lib/efm32/efm32lg/Makefile
index c76323e..73dd6f6 100644
--- a/lib/efm32/efm32lg/Makefile
+++ b/lib/efm32/efm32lg/Makefile
@@ -30,7 +30,7 @@ CFLAGS = -Os -g -Wall -Wextra -I../../../include -fno-common \
-ffunction-sections -fdata-sections -MD -D$(FAMILY)
# ARFLAGS = rcsv
ARFLAGS = rcs
-OBJS = vector.o
+OBJS = vector.o systick.o scb.o nvic.o assert.o
VPATH += ../:../../cm3
diff --git a/lib/efm32/efm32tg/Makefile b/lib/efm32/efm32tg/Makefile
index 65f8d02..a065b6d 100644
--- a/lib/efm32/efm32tg/Makefile
+++ b/lib/efm32/efm32tg/Makefile
@@ -30,7 +30,7 @@ CFLAGS = -Os -g -Wall -Wextra -I../../../include -fno-common \
-ffunction-sections -fdata-sections -MD -D$(FAMILY)
# ARFLAGS = rcsv
ARFLAGS = rcs
-OBJS = vector.o
+OBJS = vector.o systick.o scb.o nvic.o assert.o
VPATH += ../:../../cm3