摘要:1.安装TurboC++3.0,安装的目的是为了使用其bin目录下的make。2.安装Cygwin,当前最新版本是1.7.9-1。3.从开始菜单打开CygwinBashShell,进入Home目录,新增一个helloworld.c源文件。4.在相同目录下新增Makefile文件,将下面的内容复制到里面:helloworld.exe : helloworld.o gcc -o helloworld.exe helloworld.ohelloworld.o: gcc -c helloworld.cclean: rm -rf *.exe *.o *~5.运行make,当前目录下会多...
阅读全文
posted @ 2012-12-28 21:07