1. configuer configure 是一个shell脚本,用来检测安装平台是否符合要求,并通过配置参数生成makefile文件 2. make (make all 的简写) 编译命令,从makefile文件中读取命令,产生目标文件和可执行文件 3. make clean 清除编译产生的可执行文件及目标文件,编译失败后,重新编译前,要先执行此命令 4. make distclean 除了清除可执行文件和目标文件外,把configure所产生的Makefile也清除掉. 5. 编译检
Spring在线参考文档: http://spring.io/guides/gs/maven/ 下载安装 Downloadand unzip the source repository for this guide, or clone it using Git: git clone https://github.com/spring-guides/gs-maven.git cd into gs-maven/initial Jump ahead to [initial]. Once you hav