搜索资源列表
autoconf-2.59.tar
- autoconf 2.59版,可用于redhat系统.用于编译原码,编写makefile文件.-autoconf 2.59 version, the system can be used redhat. The original code used to compile, document preparation makefile.
Makefile
- linux下交叉编译spca5xx(中星微摄像头在linux下使用时用到的驱动)用到的Makefile文件,文件将针对linux2.5 2.6内核的驱动注释掉,修改了针对2.4内核的驱动。
Makefile
- makefile关系到了整个工程的编译规则。一个工程中的源文件不计数,其按类型、 功能、模块分别放在若干个目录中,makefile定义了一系列的规则来指定,哪些文件需 要先编译,哪些文件需要后编译,哪些文件需要重新编译,甚至于进行更复杂的功能 操作,因为makefile就像一个Shell脚本一样,其中也可以执行操作系统的命令。
Makefile
- linux 下 makefile范本 可以根据此添加编译文件-makefile under linux template can be compiled based on this document to add
MakeFile
- Linux下一个简单的Makefile文件的具体实现。可以使用其作为框架来编译自己的Linxu程序-Linux with a simple Makefile file under the concrete implementation. You can use it as a framework to compile your own programs Linxu
audio.tar
- //--- --- --- --- --- --- --- --- --- --- --- -- audio_read.c 从多媒体文件中单独读出音频文件并发送给解码器 //-------------------------------------------------------------------- audio_decode.c 接受未解码的音频数据,解码数据后发送给播放器 //------------
linux_c
- 本章介绍在 LINUX 下进行 C 语言编程所需要的基础知识.在这篇文章当中,我们将会 学到以下内容: 源程序编译 Makefile 的编写 程序库的链接 程序的调试 头文件和系统求助-LINUX C
makefile
- makefile文件编写,帮助你轻松编译文件-makefile
Linux
- linux操作系统下C语言编程入门 源程序编译 Makefile 的编写 程序库的链接 程序的调试 头文件和系统求助 -linux operating system, C language programming entry
Makefile
- 本文介绍了Unix/Linux平台上如何编写Makefile来自动编译C/C++。一个工程中的源文件不计数,其按类型、功能、模块分别放在若干个目录中,makefile定义了一系列的规则来指定,哪些文件需要先编译,哪些文件需要后编译,哪些文件需要重新编译,甚至于进行更复杂的功能操作,因为 makefile就像一个Shell脚本一样,其中也可以执行操作系统的命令。 -This article describes the Unix/Linux platform, how to write a Ma
Makefile
- 一个用通用的makefile,只要放在目录里 make就可以编译c文件,-One with the general makefile, as long as on the directory can make to compile the c file
makefile
- 自己写的Makefile编译系统,可以自动包含头文件的依赖关系,如果不知道怎么使用,请联系cmdxiaoha@163.com-Write your own Makefile build system can automatically include the header file dependencies, if you do not know how to use, please contact cmdxiaoha@163.com
ADCdrives
- ADC字符设备驱动程序,包含加载函数,卸载函数,接口函数,read(),ioctl()等。另带编译文件Makefile以及测试程序ADCtest.c 在linux环境下执行make命令编译后会生成ADCdrives.o以及test。在字符设备中加载test即可得到结果。-ADC code I/O Device Drive
aix-makefile
- Aix操作系统下的VC++程序的批处理编译文件。-makefile in aix
netlink
- linux下netlink机制实现通信,自己写的小程序实现内核与用户通信,代码十分精简且注释完整,内附有makefile编译文件和使用说明,还有学习文档-Linux u4E0Bnetlink u673A u5239 u5B0 u90B1 u901A u4FE1 uFF0C u81EA u5DF1 u5199 u7684 u5C0F u7A0B u5B9E u7B0 u5185 u6838 u4E0E u7528 u6237 u901A u4FE1
Makefile进行多文件的编译
- 学习makefile对linux下的多文件进行同时编译,比gcc进行的单文件编译高效,方便(Learning makefile for Linux under the simultaneous compilation of multiple files, than GCC single file compilation efficient and convenient)
2014220303020_yang_lab3
- 1。学习所提供的表达式语法的LR分析 了解calc1。L,calc1。Y,calc2。L,Y calc2。 在Eclipse中创建项目并试运行calc3。L,Y calc3。 2。为学习提供lrgram.txt语法 它与rdgram.txt比较 三.学习和了解makefile文件(可选) 4。写的lrgram LR解析器 (1)解析器生成AST。 野牛的规范文件:lrparser。Y Flex的规范文件:lrlex。l AST相关代码:AST和AST (2)其他功能(如主)
linux开发Makefile模板
- Linux软件Makefile模板,满足C、C++文件单独编译或混合编译要求,用户按照框架即可一键Make,生成可执行程序(Linux software Makefile template to meet C, C++ files individually compiled or mixed compilation requirements, users follow the framework to execute Make commands to generate executable pr
GNU Make手册
- make是一个命令工具,它解释Makefile 中的指令(应该说是规则)。在Makefile文件中描述了整个工程所有文件的编译顺序、编译规则。Makefile 有自己的书写格式、关键字、函数。像C 语言有自己的格式、关键字和函数一样。而且在Makefile 中可以使用系统shell所提供的任何命令来完成想要的工作。Makefile(在其它的系统上可能是另外的文件名)在绝大多数的IDE 开发环境中都在使用,已经成为一种工程的编译方法(Make is a command tool that expl
Linux内核源码0.01
- 目录 boot 系统引导。 fs 文件系统。 include 头文件。一些C标准库,系统核心库。 init 入口。main.c。 kernel 内核。 lib 库。C源程序,一些基本核心的程序。 mm 内存管理 tools C程序编译构建相关。不算系统文件 Makefile C程序编译构建相关。不算系统文件。