2010年3月7日
摘要: Makefile的编写 假设我们有下面这样的一个程序,源代码如下: /* main.c */ #include "mytool1.h" #include "mytool2.h" int main(int argc,char **argv) { mytool1_print("hello"); mytool2_print("hello"); } /* mytool1.h */ #ifndef _MYTOOL_1_H #define _MYTOOL_1_H void mytool1_print(char *print_s 阅读全文
posted @ 2010-03-07 20:46 tankzhouqiang 阅读(1014) 评论(0) 推荐(0) 编辑