1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

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
This commit is contained in:
Vitor Sessak 2008-02-15 19:21:21 +00:00
parent bc305cc32b
commit 52bfefeb45

View File

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