diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 19:21:21 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 19:21:21 +0000 |
commit | 52bfefeb45b2c5cd76adbc5bfcc3f6d1899d4816 (patch) | |
tree | 6ac3b7474bc3a25ec9029286d7da8c7ecacd25eb /libavfilter/Makefile | |
parent | bc305cc32b233771ab9bb7391b582cb3cc3f83e0 (diff) | |
download | ffmpeg-52bfefeb45b2c5cd76adbc5bfcc3f6d1899d4816.tar.gz |
Add rule for make clean.
Commited in SoC by Bobby Bingham on 2007-07-15 16:16:36
Originally committed as revision 11945 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index a7e558ceb2..a94472c368 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -14,6 +14,9 @@ OBJECTS = avfilter.o \ all: filter_test +clean: + rm -f filter_test $(OBJECTS) + filter_test: $(OBJECTS) filter_test.c $(CC) $(CFLAGS) $^ -o $@ $(LIBS) |