Makefile
摘要:# Define macros for name of compilerCC = gcc# Define a macr o for the CC flagsCCFLAGS = -D_DEBUG -g -m486# A rule for building a object filetest.o: test.c test.h $(CC) -c $(CCFLAGS) test.cCC 定义一个编译器(变量)CCFLAGSC编译器的选项 -D -W 生成警告信息等test.o: test.c test.h 表示test.o是由test.c test.h生成$(CC) -c $(CCFLAGS) te.
阅读全文
posted @ 2013-07-27 15:33
浙公网安备 33010602011771号