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
This commit is contained in:
alex 2003-01-11 10:35:31 +00:00
parent d6a74fd898
commit 26908d998b
1 changed files with 2 additions and 2 deletions

View File

@ -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