mirror of https://github.com/mpv-player/mpv
Makefile: delete .d files in "clean" target too
Previously, .d files were only deleted by "distclean" target. I see no reason why they should be kept by "clean". Delete them in that target too.
This commit is contained in:
parent
0a1fc392b4
commit
d9c1577c4e
3
Makefile
3
Makefile
|
@ -702,14 +702,13 @@ uninstall:
|
||||||
$(RM) $(foreach lang,$(MSG_LANGS),$(LOCALEDIR)/$(lang)/LC_MESSAGES/mplayer.1)
|
$(RM) $(foreach lang,$(MSG_LANGS),$(LOCALEDIR)/$(lang)/LC_MESSAGES/mplayer.1)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-$(RM) $(call ADD_ALL_DIRS,/*.o /*.a /*.ho /*~)
|
-$(RM) $(call ADD_ALL_DIRS,/*.o /*.d /*.a /*.ho /*~)
|
||||||
-$(RM) $(call ADD_ALL_EXESUFS,mplayer)
|
-$(RM) $(call ADD_ALL_EXESUFS,mplayer)
|
||||||
-$(RM) $(MOFILES)
|
-$(RM) $(MOFILES)
|
||||||
|
|
||||||
distclean: clean testsclean toolsclean driversclean
|
distclean: clean testsclean toolsclean driversclean
|
||||||
-$(RM) -r DOCS/tech/doxygen
|
-$(RM) -r DOCS/tech/doxygen
|
||||||
-$(RM) -r locale
|
-$(RM) -r locale
|
||||||
-$(RM) $(call ADD_ALL_DIRS,/*.d)
|
|
||||||
-$(RM) config.log config.mak config.h codecs.conf.h version.h TAGS tags
|
-$(RM) config.log config.mak config.h codecs.conf.h version.h TAGS tags
|
||||||
-$(RM) libvo/vdpau_template.c
|
-$(RM) libvo/vdpau_template.c
|
||||||
-$(RM) libmpdemux/ebml_types.h libmpdemux/ebml_defs.c
|
-$(RM) libmpdemux/ebml_types.h libmpdemux/ebml_defs.c
|
||||||
|
|
Loading…
Reference in New Issue