summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/Makefile.inc
diff options
context:
space:
mode:
authorIngo Albrecht <prom@berlin.ccc.de>2010-03-07 03:15:26 +0100
committerHarald Welte <laforge@gnumonks.org>2010-03-07 11:47:11 +0100
commit9de3167d8bf68e7eb48070e68479783eb33faeb6 (patch)
treee4d1296300f92e334967e27b3a03090f0d5e7a01 /src/target/firmware/Makefile.inc
parent308d67c3433955e7b24c12705463f560c8bc5059 (diff)
Normalize some var names.
Diffstat (limited to 'src/target/firmware/Makefile.inc')
-rw-r--r--src/target/firmware/Makefile.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/target/firmware/Makefile.inc b/src/target/firmware/Makefile.inc
index b18c4b70..64fb2e3f 100644
--- a/src/target/firmware/Makefile.inc
+++ b/src/target/firmware/Makefile.inc
@@ -42,9 +42,9 @@ ALL_APP_TARGETS=$(ALL_APPS) $(ALL_APPS:.elf=.bin) $(ALL_APPS:.elf=.map) $(ALL_AP
#### LIBRARY DATA ####
-ALL_LIB_ARS=
+ALL_LIBS=
-ALL_LIB_TARGETS=$(ALL_LIB_ARS)
+ALL_LIB_TARGETS=$(ALL_LIBS)
#### DEFAULT RULE ####
@@ -92,7 +92,7 @@ $(1)_OBJS:=$$($(1)_OBJS:.S=.o)
$$($(1)_DIR)/lib$(1).a: $$($(1)_OBJS)
$(AR) cru $$($(1)_DIR)/lib$(1).a $$($(1)_OBJS)
-ALL_LIB_ARS+=$$($(1)_DIR)/lib$(1).a
+ALL_LIBS+=$$($(1)_DIR)/lib$(1).a
ALL_OBJS+=$$($(1)_OBJS)
ALL_DEPS+=$$($(1)_OBJS:.o=.P)