diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-01-16 14:59:54 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-01-16 14:59:54 +0000 |
commit | 98013cc16cc88c49c83887ddcd6c5ba4ae549dbb (patch) | |
tree | 035ec03a1005023c6fc8fa203580b9f1bfb4cf6e /libavformat | |
parent | d3c71c500225e3ad8ac9927f51f65ea0300d7558 (diff) | |
download | ffmpeg-98013cc16cc88c49c83887ddcd6c5ba4ae549dbb.tar.gz |
Make clean/distclean consistent throughout all the Makefiles.
Originally committed as revision 4863 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index b88c90f74a..947a93acc3 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -142,8 +142,11 @@ install-headers: %.o: %.cpp g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $< -distclean clean: - rm -f *.o *.d *~ .depend *.a *.lib *.so *.dylib *.dll +clean: + rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll + +distclean: clean + rm -f Makefile.bak .depend # # include dependency files if they exist |