fix 10l mistake and add the libdeps thing right this time

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7134 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rfelker 2002-08-29 02:11:33 +00:00
parent eba0ef2748
commit 0ed36bdd09
1 changed files with 8 additions and 1 deletions

View File

@ -308,10 +308,17 @@ endif
version.h: config.h config.mak Makefile
endif
#
# include dependencies to get make to recurse into lib dirs,
# if the user desires such behavior
#
ifneq ($(wildcard .libdeps))
include .libdeps
endif
#
# include dependency files if they exist
#
ifneq ($(wildcard .depend),)
include .depend
endif
include libdeps