从斯坦福大学SEP组下载的SEPlib软件由于编译过程中存在一定的问题,因而导致安装失败。基于此,本人将导致编译出错的Makefile进行了重新改写,修改后SEPlib能成功编译和运行。详见README部分。
2022-03-28 16:51:06 37KB SEPlib Makefile 地震勘探软件
1
成绩管理系统,Linux下运行(包含Makefile
2022-03-26 01:07:21 30KB Linux 成绩管理系统 Makefile
1
Win平台下Makefile的入门介绍,简明的介绍了Makefile的基本语法、宏、预处理命令和自动推导规则。
2022-03-24 14:20:04 653KB Makefile
1
MakeFile-基于tasking平台,cctc命令。make命令即可。
2022-03-22 22:28:47 13KB makefile Aurix
1
六维力传感器使用c语言进行读取数据的程序,包括makefile文件,是在说明文档中提到的,这里就把它放上,如果有需要的就可以直接下载。
2022-03-14 16:17:48 2KB 六维力传感器
1
websocket-client-c 使用的websocket c客户端演示 它可以与websocket服务器通信 准备libwebsockets git clone https://libwebsockets.org/repo/libwebsockets cd libwebsockets/ mkdir build cd build/ cmake .. make make install 建造 make 运行websocket服务器 https://github.com/ityuhui/webserver-go.git cd webserver-go/ go run main.go 跑步 ./websocket_client
2022-03-14 09:33:45 9KB Makefile
1
详细介绍makefile详细介绍makefile详细介绍makefile
2022-03-13 17:21:40 482KB makefile
1
这是前一段时间项目需要编写的server和client,用来传输图片的demo。使用tcp协议,包含有Makefile可以make编译。 原创,并且有封装成库,方便调用。 好使请好评夸我。
2022-03-08 12:10:09 7KB TCP传输图片 Client Server Makefile
1
火龙果开发板(redpitaya)点亮一个LED配套程序,与教程火龙果(redpitaya)开发板常用接口开发指南(一、二)——环境配置与点亮LED配套使用。
2022-03-04 14:26:52 317B Makefile
1
跟我一起写 Makefile (PDF 重制版) 作者: 陈皓 2020 年 05 月 24 日 目录 1 概述 1 1.1 关于程序的编译和链接 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 2 makefile 介绍 3 2.1 makefile 的规则 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 2.2 一个示例 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 2.3 make 是如何工作的 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 2.4 makefile 中使用变量 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 2.5 让 make 自动推导 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 2.6 另类风格的 makefiles . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 2.7 清空目标文件的规则 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 2.8 Makefile 里有什么? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 2.9 Makefile 的文件名 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 2.10 引用其它的 Makefile . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 2.11 环境变量 MAKEFILES . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 2.12 make 的工作方式 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 3 书写规则 13 3.1 规则举例 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 3.2 规则的语法 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 3.3 在规则中使用通配符 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 3.4 文件搜寻 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 3.5 伪目标 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 3.6 多目标 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 3.7 静态模式 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 3.8 自动生成依赖性 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
2022-03-03 23:21:26 619KB makefile linux 编程 编译
1