Added ability to run 'make menuconfig' by simply calling `ltpmenu` when executed.
diff --git a/Makefile b/Makefile
index 0a1c9cd..1871047 100644
--- a/Makefile
+++ b/Makefile
@@ -27,6 +27,9 @@
 
 export CFLAGS = -Wall $(CROSS_CFLAGS)
 
+menuconfig:
+	@./ltpmenu
+
 all: libltp.a 
 	@$(MAKE) -C pan $@
 	@$(MAKE) -C testcases $@
@@ -39,7 +42,7 @@
 install: all
 	@$(MAKE) -C testcases install
 	@$(MAKE) -C tools install
-	./IDcheck.sh
+	@./IDcheck.sh
 
 libltp.a:
 	@$(MAKE) -C lib $@