Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guillaume Martres
aom-rav1e
Commits
3659fbd3
Commit
3659fbd3
authored
Jun 10, 2014
by
James Zern
Committed by
Gerrit Code Review
Jun 10, 2014
Browse files
Merge "Makefile: skip .d inclusion for 'testdata' target"
parents
5556d118
4f83315d
Changes
1
Hide whitespace changes
Inline
Side-by-side
build/make/Makefile
View file @
3659fbd3
...
...
@@ -330,7 +330,10 @@ endef
ifneq
($(target),)
include
$(SRC_PATH_BARE)/$(target:-$(TOOLCHAIN)=).mk
endif
ifeq
($(filter %clean,$(MAKECMDGOALS)),)
skip_deps
:=
$(
filter
%clean,
$(MAKECMDGOALS)
)
skip_deps
+=
$(
findstring
testdata,
$(MAKECMDGOALS)
)
ifeq
($(strip $(skip_deps)),)
# Older versions of make don't like -include directives with no arguments
ifneq
($(filter %.d,$(OBJS-yes:.o=.d)),)
-include
$(filter %.d,$(OBJS-yes:.o=.d))
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment