summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 "############################################################"