diff --git a/gui/trunk/CLASSGui.cxx b/gui/trunk/CLASSGui.cxx
index bc799e0fd8ff237dcdd84690d194e82efc970e0b..a51ed78b9bfa36399b91a7a19df95e7550478c9d 100755
--- a/gui/trunk/CLASSGui.cxx
+++ b/gui/trunk/CLASSGui.cxx
@@ -26,7 +26,7 @@ int main(int argc, char** argv)
 	CLASSRead* DataRead = new CLASSRead(VFileName[0]);
 	for (int i = 1; i < (int)VFileName.size(); i++)
 	{
-		cout << "FIle "<<  i << endl;
+		cout << "File "<<  i << endl;
 		DataRead->AddFile(VFileName[i]);
 	}
 	DataRead->ReadName();
diff --git a/gui/trunk/Makefile b/gui/trunk/Makefile
index 544e5a8920edee604d6d365f2e870831554381e4..d94dbe07bf988c85c65c1073c598de3350794904 100755
--- a/gui/trunk/Makefile
+++ b/gui/trunk/Makefile
@@ -38,18 +38,27 @@ main	=  CLASSGui
 
 OBJS    = $(subO) $(mainO) 
 
+
+
+
+
 all:    $(OBJS)
 		
 	$(LD) $(LDFLAGS) $(OBJS) $(LIBS) $(GLIBS) -o $(main)
-	mv  $(main) bin/
+	@mkdir -p bin
+	@mv  $(main) bin/
 	@echo "$(main) done"
+	@echo "CLASSGui is now available in $(CLASS_PATH)/Gui/bin !!"
+
+
 
 clean:
 		@rm -f $(OBJS)
 
+
+
 .SUFFIXES: .cxx
 
-###
 CLASSRead.o:	CLASSRead.hxx \
 		CLASSPlotElement.hxx