mirror of
https://github.com/mpv-player/mpv
synced 2024-12-13 18:36:09 +00:00
Skip dependency generation if we just run distclean or if skipping
is requested explicitly on the command line. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27443 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
e1ce107366
commit
6d01235f44
6
Makefile
6
Makefile
@ -1055,7 +1055,13 @@ dhahelperwinclean:
|
||||
|
||||
|
||||
|
||||
# Do not include dependencies when they are about to be removed anyway
|
||||
# or if SKIP_DEPS was set to "yes" on the command line.
|
||||
ifneq ($(MAKECMDGOALS),distclean)
|
||||
ifneq ($(SKIP_DEPS),yes)
|
||||
-include $(DEPS)
|
||||
endif
|
||||
endif
|
||||
|
||||
.PHONY: all doxygen *install* *tools drivers dhahelper*
|
||||
.PHONY: checkheaders *clean dep depend tests
|
||||
|
Loading…
Reference in New Issue
Block a user