Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Librem5
uboot-imx
Commits
2b208f53
Commit
2b208f53
authored
Oct 09, 2006
by
Wolfgang Denk
Browse files
Move "ar" flags to config.mk to allow for silent "make -s"
Based on patch by Mike Frysinger, 20 Jun 2006
parent
7ce343e4
Changes
334
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
2b208f53
...
...
@@ -2,6 +2,9 @@
Changes since U-Boot 1.1.4:
======================================================================
* Move "ar" flags to config.mk to allow for silent "make -s"
Based on patch by Mike Frysinger, 20 Jun 2006
* Coding style cleanup
* Add support for EP82xxM boards
...
...
board/AtmarkTechno/suzaku/Makefile
View file @
2b208f53
...
...
@@ -32,7 +32,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS)
$(AR)
crv
$@
$(OBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
#########################################################################
...
...
board/BuS/EB+MCF-EV123/Makefile
View file @
2b208f53
...
...
@@ -32,7 +32,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS)
$(AR)
crv
$@
$(OBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
#########################################################################
...
...
board/LEOX/elpt860/Makefile
View file @
2b208f53
...
...
@@ -43,7 +43,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS)
$(AR)
crv
$@
$(OBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
#########################################################################
...
...
board/MAI/AmigaOneG3SE/Makefile
View file @
2b208f53
...
...
@@ -50,7 +50,7 @@ EMUOBJ := $(addprefix $(obj),$(EMUOBJ))
$(LIB)
:
$(obj).depend $(OBJS) $(SOBJS) $(EMUSRC)
make
$(obj)
libx86emu.a
-C
../bios_emulator/scitech/src/x86emu
-f
makefile.uboot
CROSS_COMPILE
=
$(CROSS_COMPILE)
-
rm
$(LIB)
$(AR)
crv
$@
$(OBJS)
$(SOBJS)
$(EMUOBJ)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
$(SOBJS)
$(EMUOBJ)
#########################################################################
...
...
board/Marvell/db64360/Makefile
View file @
2b208f53
...
...
@@ -42,7 +42,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS) $(SOBJS)
$(AR)
crv
$@
$(OBJS)
$(SOBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
$(SOBJS)
#########################################################################
...
...
board/Marvell/db64460/Makefile
View file @
2b208f53
...
...
@@ -42,7 +42,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS) $(SOBJS)
$(AR)
crv
$@
$(OBJS)
$(SOBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
$(SOBJS)
#########################################################################
...
...
board/RPXClassic/Makefile
View file @
2b208f53
...
...
@@ -32,7 +32,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS)
$(AR)
crv
$@
$(OBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
#########################################################################
...
...
board/RPXlite/Makefile
View file @
2b208f53
...
...
@@ -32,7 +32,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS)
$(AR)
crv
$@
$(OBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
#########################################################################
...
...
board/RPXlite_dw/Makefile
View file @
2b208f53
...
...
@@ -32,7 +32,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS)
$(AR)
crv
$@
$(OBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
#########################################################################
...
...
board/RRvision/Makefile
View file @
2b208f53
...
...
@@ -32,7 +32,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS)
$(AR)
crv
$@
$(OBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
#########################################################################
...
...
board/a3000/Makefile
View file @
2b208f53
...
...
@@ -32,7 +32,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS)
$(AR)
crv
$@
$(OBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
#########################################################################
...
...
board/adder/Makefile
View file @
2b208f53
...
...
@@ -35,7 +35,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS)
$(AR)
crv
$@
$(OBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
clean
:
rm
-f
$(SOBJS)
$(OBJS)
...
...
board/adsvix/Makefile
View file @
2b208f53
...
...
@@ -33,7 +33,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS) $(SOBJS)
$(AR)
crv
$@
$(OBJS)
$(SOBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
$(SOBJS)
clean
:
rm
-f
$(SOBJS)
$(OBJS)
...
...
board/alaska/Makefile
View file @
2b208f53
...
...
@@ -32,7 +32,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(OBJS)
$(AR)
crv
$@
$(OBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
clean
:
rm
-f
$(SOBJS)
$(OBJS)
...
...
board/altera/dk1c20/Makefile
View file @
2b208f53
...
...
@@ -33,7 +33,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS) $(SOBJS)
$(AR)
crv
$@
$(OBJS)
$(SOBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
$(SOBJS)
clean
:
rm
-f
$(SOBJS)
$(OBJS)
...
...
board/altera/dk1s10/Makefile
View file @
2b208f53
...
...
@@ -33,7 +33,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS) $(SOBJS)
$(AR)
crv
$@
$(OBJS)
$(SOBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
$(SOBJS)
clean
:
rm
-f
$(SOBJS)
$(OBJS)
...
...
board/altera/ep1c20/Makefile
View file @
2b208f53
...
...
@@ -37,7 +37,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS)
$(AR)
crv
$@
$(OBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
clean
:
rm
-f
$(SOBJS)
$(OBJS)
...
...
board/altera/ep1s10/Makefile
View file @
2b208f53
...
...
@@ -37,7 +37,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS)
$(AR)
crv
$@
$(OBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
clean
:
rm
-f
$(SOBJS)
$(OBJS)
...
...
board/altera/ep1s40/Makefile
View file @
2b208f53
...
...
@@ -37,7 +37,7 @@ OBJS := $(addprefix $(obj),$(COBJS))
SOBJS
:=
$(
addprefix
$(obj)
,
$(SOBJS)
)
$(LIB)
:
$(obj).depend $(OBJS)
$(AR)
crv
$@
$(OBJS)
$(AR)
$(ARFLAGS)
$@
$(OBJS)
clean
:
rm
-f
$(SOBJS)
$(OBJS)
...
...
Prev
1
2
3
4
5
…
17
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment