随笔分类 - 【08】make
摘要:经典应用示例 1. 文件结构 . ├── include │ ├── module1 │ │ ├── mod1c1.hpp │ │ └── mod1c2.hpp │ ├── module2 │ │ ├── mod2c1.hpp │ │ └── mod2c2.hpp │ └── program.hpp
阅读全文
摘要:经典应用示例 1. 文件结构: . ├── common │ └── common.h ├── dir1 │ ├── a1.c │ ├── a1.h │ ├── b1.c │ ├── b1.h │ ├── c1.c │ ├── c1.h │ └── dir1.mk ├── dir2 │ ├── a2
阅读全文
摘要:经典应用示例 1. 文件结构 NetServer ├── docs │ └── images │ ├── WebBench_hello.png │ ├── WebBench_html.png │ ├── wrk_hello_4_iothread_2_workerthread.png │ ├── wr
阅读全文
摘要:假设有下面这样的一个程序,源代码如下: 1 /* main.c */ 2 #include "mytool1.h" 3 #include "mytool2.h" 4 5 int main(int argc,char **argv) 6 { 7 mytool1_print("hello"); 8 my
阅读全文