diff --git a/Makefile b/Makefile
index 387be5b..d803a96 100755
--- a/Makefile
+++ b/Makefile
@@ -17,9 +17,9 @@
 GROUP_NUMBER		 = 39 # remplacez ceci par votre numéro de groupe #
 GROUP			 = $(GROUP_NUMBER:%=compil%)
 
-COMPILER_MAIN		 = zweic.PrinterTest
+COMPILER_MAIN		 = zweic.AnalyzerTest
 EXAMPLES_DIR		 = $(ROOT)/examples
-TESTS_DIR		 = $(ROOT)/tests/3
+TESTS_DIR		 = $(ROOT)/tests/4
 
 TO_ADDRESS		 = compilation@lampsun1.epfl.ch
 
@@ -48,6 +48,10 @@
 SC_FILES		+= ParserTest
 SC_FILES		+= Printer
 SC_FILES		+= PrinterTest
+SC_FILES		+= Symbol
+SC_FILES		+= Type
+SC_FILES		+= Analyzer
+SC_FILES		+= AnalyzerTest
 SC_SOURCES		+= $(SC_FILES:%=sources/zweic/%.scala)
 
 # Execution Scala
@@ -117,7 +121,7 @@
 stat		:
 	@sorted=`echo $(JC_SOURCES) $(SC_SOURCES) | xargs -n 1 | sort`; \
 	total=0; total1=0; \
-	tmpfile="/tmp/$(USER)_bytes.tmp"; \
+	tmpfile="/tmp/$(USER)_stat.tmp"; \
 	for file in $$sorted; do \
 	    size=0; size1=0; \
 	    if [ -f "$$file" ]; then \