summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-13 22:43:11 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-13 22:43:11 +0000
commit6fb78bac11a44a9b6830b997dc15237cae76c5a3 (patch)
tree5c8e53482966fcad04ba7431678914ed5d9f79f1 /Makefile
parent690d6c1f71245f7e2aae091c01137dc661e75034 (diff)
downloadmpv-6fb78bac11a44a9b6830b997dc15237cae76c5a3.tar.bz2
mpv-6fb78bac11a44a9b6830b997dc15237cae76c5a3.tar.xz
cosmetics: Move depend target in preparation for upcoming changes.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22557 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index e9c2973896..3a8eabdf63 100644
--- a/Makefile
+++ b/Makefile
@@ -318,6 +318,10 @@ uninstall:
rm -f $(LIBDIR)/mplayer/vidix/*.so
-rmdir -p $(LIBDIR)/mplayer/vidix
+dep depend: help_mp.h version.h codecs.conf.h
+ $(CC) -MM $(CFLAGS) $(SRCS_MPLAYER) $(SRCS_MENCODER) $(SRCS_COMMON) 1>.depend
+ @for a in $(PARTS); do $(MAKE) -C $$a dep; done
+
clean:
-rm -f *.o *.a *~
-rm -f mplayer$(EXESUF) mencoder$(EXESUF) codec-cfg$(EXESUF) \
@@ -332,10 +336,6 @@ distclean: clean doxygen_clean
strip:
strip -s $(ALL_PRG)
-dep depend: help_mp.h version.h codecs.conf.h
- $(CC) -MM $(CFLAGS) $(SRCS_MPLAYER) $(SRCS_MENCODER) $(SRCS_COMMON) 1>.depend
- @for a in $(PARTS); do $(MAKE) -C $$a dep; done
-
# ./configure must be rerun if it changed
config.h: configure
@echo "############################################################"