summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-05-13 18:01:04 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-05-13 18:01:04 +0000
commit8ef6dadf95cccfc070a25b52f378488ce63e4c43 (patch)
treea2b328d788629de48f7e943457e104657a25b309 /Gui
parent89f9113cd179c10d30c23042c4d9b9a55d7210de (diff)
downloadmpv-8ef6dadf95cccfc070a25b52f378488ce63e4c43.tar.bz2
mpv-8ef6dadf95cccfc070a25b52f378488ce63e4c43.tar.xz
Make depend targets consistent: Remove redirection through .depend target.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18484 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r--Gui/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Gui/Makefile b/Gui/Makefile
index aa51628fd2..346be565ee 100644
--- a/Gui/Makefile
+++ b/Gui/Makefile
@@ -45,7 +45,7 @@ OBJS = $(SRCS:.c=.o)
### TARGETS ###
-$(LIBNAME): .depend $(OBJS)
+$(LIBNAME): $(OBJS)
rm -f $(LIBNAME)
$(AR) rc $(LIBNAME) $(OBJS) $(MPLAYEROBJS)
$(RANLIB) $(LIBNAME)
@@ -70,9 +70,7 @@ distclean: clean
dep: depend
-depend: .depend
-
-.depend: Makefile config.mak
+depend:
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
#