summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-11 10:35:31 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-11 10:35:31 +0000
commit26908d998b91c13baf78a27cb1af67b8fe05e79b (patch)
tree54810586a4361fd7ee94e500cb3e61d1acf5d77f /Makefile
parentd6a74fd898624906c80986fc2352dcec68a8bca5 (diff)
downloadmpv-26908d998b91c13baf78a27cb1af67b8fe05e79b.tar.bz2
mpv-26908d998b91c13baf78a27cb1af67b8fe05e79b.tar.xz
remove codec-cfg binary during make distclean (btw, why do we compile it anyway?)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8889 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4a79753a62..59b77272ec 100644
--- a/Makefile
+++ b/Makefile
@@ -103,7 +103,7 @@ endif
# .PHONY: $(COMMON_DEPS)
-all: $(ALL_PRG)
+all: version.h $(ALL_PRG)
.c.o:
$(CC) -c $(CFLAGS) -o $@ $<
@@ -301,7 +301,7 @@ clean:
-rm -f *.o *~ $(OBJS) codecs.conf.h
distclean:
- -rm -f *~ $(PRG) $(PRG_FIBMAP) $(PRG_MENCODER) $(OBJS)
+ -rm -f *~ $(PRG) $(PRG_FIBMAP) $(PRG_MENCODER) $(PRG_CFG) $(OBJS)
-rm -f *.o *.a .depend configure.log codecs.conf.h
@for a in $(PARTS); do $(MAKE) -C $$a distclean; done