diff --git a/Makefile b/Makefile
index 91b635d..e704095 100644
--- a/Makefile
+++ b/Makefile
@@ -3,8 +3,9 @@ include Makeconf
 test-srcs := $(wildcard tests/*.cpp)
 
 emu-objs := $(addsuffix .o,$(modules))
-clean-objs := $(emu-objs) libemu.a vgbc vgbc.test
 test-objs := $(patsubst %.cpp,%.o,$(test-srcs))
+clean-objs := $(emu-objs) $(test-objs) libemu.a vgbc vgbc.test
+
 headers := $(wildcard */*.h)
 
 .PHONY: all test clean