diff options
author | John Koleszar <jkoleszar@google.com> | 2010-10-27 10:06:45 -0400 |
---|---|---|
committer | John Koleszar <jkoleszar@google.com> | 2010-10-27 13:00:30 -0400 |
commit | 3427e1dd431f7450c141a8560a37b0b615e8059f (patch) | |
tree | d6c8358bb42ea32b3056d64b63fc59d5af273424 | |
parent | c7c0c05608a883830e2e1a77796b2b66656d75d1 (diff) | |
download | libvpx-3427e1dd431f7450c141a8560a37b0b615e8059f.tar.gz |
makefile: remove ivf{enc,dec} on make clean
Prior clean-up removed the object files, but not the binaries
themselves.
Change-Id: Ic2332188cea88094c14457ebb8b77680a60d581b
-rw-r--r-- | examples.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples.mk b/examples.mk index 28fc6eaa9..9340e23bb 100644 --- a/examples.mk +++ b/examples.mk @@ -41,8 +41,8 @@ ifeq ($(CONFIG_MSVS),yes) CLEAN-OBJS += $(foreach p,$(VS_PLATFORMS),$(p)/Release/ivfenc.exe) CLEAN-OBJS += $(foreach p,$(VS_PLATFORMS),$(p)/Release/ivfdec.exe) else -CLEAN-OBJS += ivfenc{.c.o,.c.d,.dox,.exe} -CLEAN-OBJS += ivfdec{.c.o,.c.d,.dox,.exe} +CLEAN-OBJS += ivfenc{.c.o,.c.d,.dox,.exe,} +CLEAN-OBJS += ivfdec{.c.o,.c.d,.dox,.exe,} endif # XMA example disabled for now, not used in VP8 |