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 /vhook/Makefile | |
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 'vhook/Makefile')
-rw-r--r-- | vhook/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/vhook/Makefile b/vhook/Makefile index 1ee2c5ef55..58844f950a 100644 --- a/vhook/Makefile +++ b/vhook/Makefile @@ -40,7 +40,10 @@ drawtext$(SLIBSUF): drawtext.o $(CC) $(LDFLAGS) -g -o $@ $(SHFLAGS) $< clean: - rm -f *.o *.d *~ .depend *.a *.lib *.so *.dylib *.dll + rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll + +distclean: clean + rm -f Makefile.bak .depend ifneq ($(wildcard .depend),) include .depend |