diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-01-26 23:42:30 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-01-26 23:42:30 +0000 |
commit | 04c07634d6367800326a18cdb22b50a82ea8784e (patch) | |
tree | ec466c4fcd0cba2f94c39efe3037c09d7f8c1085 | |
parent | d9d434b8398fa183c737529ea503c8af5ae661ab (diff) | |
download | ffmpeg-04c07634d6367800326a18cdb22b50a82ea8784e.tar.gz |
Remove obscure Makefile.bak entry from distclean rules.
Originally committed as revision 4901 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | libavcodec/Makefile | 2 | ||||
-rw-r--r-- | libavcodec/libpostproc/Makefile | 2 | ||||
-rw-r--r-- | libavformat/Makefile | 2 | ||||
-rw-r--r-- | libavutil/Makefile | 2 | ||||
-rw-r--r-- | vhook/Makefile | 2 |
6 files changed, 6 insertions, 6 deletions
@@ -168,7 +168,7 @@ distclean: clean $(MAKE) -C libavformat distclean $(MAKE) -C tests distclean $(MAKE) -C vhook distclean - rm -f Makefile.bak .depend config.mak config.h *.pc + rm -f .depend config.mak config.h *.pc TAGS: etags *.[ch] libavformat/*.[ch] libavcodec/*.[ch] diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 7a83dab7d1..6c9e53645f 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -459,7 +459,7 @@ clean: $(CLEANAMR) $(MAKE) -C libpostproc clean distclean: clean - rm -f Makefile.bak .depend + rm -f .depend $(MAKE) -C libpostproc distclean cleanamr: diff --git a/libavcodec/libpostproc/Makefile b/libavcodec/libpostproc/Makefile index a549f31842..e293721d03 100644 --- a/libavcodec/libpostproc/Makefile +++ b/libavcodec/libpostproc/Makefile @@ -28,7 +28,7 @@ clean: rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll distclean: clean - rm -f Makefile.bak .depend + rm -f .depend dep: depend diff --git a/libavformat/Makefile b/libavformat/Makefile index bac04d6f8e..bae7342c3b 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -157,7 +157,7 @@ clean: rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll distclean: clean - rm -f Makefile.bak .depend + rm -f .depend # # include dependency files if they exist diff --git a/libavutil/Makefile b/libavutil/Makefile index 99a4c114f7..54dd347fbf 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -53,7 +53,7 @@ clean: rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll distclean: clean - rm -f Makefile.bak .depend + rm -f .depend ifeq ($(BUILD_SHARED),yes) diff --git a/vhook/Makefile b/vhook/Makefile index 58844f950a..2fb079d279 100644 --- a/vhook/Makefile +++ b/vhook/Makefile @@ -43,7 +43,7 @@ clean: rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll distclean: clean - rm -f Makefile.bak .depend + rm -f .depend ifneq ($(wildcard .depend),) include .depend |