Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
u-boot-2015.04
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vesta
u-boot-2015.04
Commits
f2b6f461
Commit
f2b6f461
authored
17 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
MUNICes: fix board Makefile for remote build directory
Signed-off-by:
Wolfgang Denk
<
wd@denx.de
>
parent
2ad4d399
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
board/munices/Makefile
+11
-16
11 additions, 16 deletions
board/munices/Makefile
with
11 additions
and
16 deletions
board/munices/Makefile
+
11
−
16
View file @
f2b6f461
#
# (C) Copyright 2003
# (C) Copyright 2003
-2008
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
#
# See file CREDITS for list of people who contributed to this
...
...
@@ -24,20 +23,16 @@
include
$(TOPDIR)/config.mk
LIB
=
lib
$(
BOARD
)
.a
OBJS
:=
$(
BOARD
)
.o
LIB
=
$(
obj
)
lib
$(
BOARD
)
.a
$(LIB)
:
$(OBJS) $(SOBJS)
$(
AR
)
crv
$@
$(
OBJS
)
COBJS
:=
$(
BOARD
)
.o
%.dtb
:
%.dts
dtc
-f
-V
0x10
-I
dts
-O
dtb
$<
>
$@
SRCS
:=
$(
SOBJS:.o
=
.S
)
$(
COBJS:.o
=
.c
)
OBJS
:=
$(
addprefix
$(
obj
)
,
$(
COBJS
))
SOBJS
:=
$(
addprefix
$(
obj
)
,
$(
SOBJS
))
%.c
:
%.dtb
xxd
-i
$<
\
|
sed
-e
"s/^unsigned char/const unsigned char/g"
\
|
sed
-e
"s/^unsigned int/const unsigned int/g"
>
$@
$(LIB)
:
$(obj).depend $(OBJS)
$(
AR
)
$(
ARFLAGS
)
$@
$(
OBJS
)
clean
:
rm
-f
$(
SOBJS
)
$(
OBJS
)
...
...
@@ -47,9 +42,9 @@ distclean: clean
#########################################################################
.depend
:
Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
$(
CC
)
-M
$(
CPPFLAGS
)
$(
SOBJS:.o
=
.S
)
$(
OBJS:.o
=
.c
)
>
$@
# defines $(obj).depend target
include
$(SRCTREE)/rules.mk
-
include
.depend
s
include
$(obj)
.depend
#########################################################################
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment