1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-27 02:40:53 +00:00

Simplify .depend file inclusion.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22335 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-02-24 10:44:16 +00:00
parent 4f452096c0
commit 50aaf4a1d4
2 changed files with 2 additions and 6 deletions

View File

@ -427,9 +427,7 @@ Gui/libgui.a: .norecurse $(wildcard Gui/*.[ch] Gui/*/*.[ch] Gui/*/*/*.[ch])
libass/libass.a: .norecurse $(wildcard libass/*.[ch]) libass/libass.a: .norecurse $(wildcard libass/*.[ch])
ifneq ($(wildcard .depend),) -include .depend
include .depend
endif
.PHONY: all install* uninstall dirclean clean distclean strip dep depend .PHONY: all install* uninstall dirclean clean distclean strip dep depend
.PHONY: doxygen doxygen_clean .PHONY: doxygen doxygen_clean

View File

@ -26,6 +26,4 @@ distclean:: clean
dep depend: dep depend:
$(CC) -MM $(CFLAGS) $(SRCS) $(SRCS2) 1>.depend $(CC) -MM $(CFLAGS) $(SRCS) $(SRCS2) 1>.depend
ifneq ($(wildcard .depend),) -include .depend
include .depend
endif