注册 | 登录读书好,好读书,读好书!
读书网-DuShu.com
当前位置: 首页出版图书经济管理管理项目管理GNU Make项目管理:英文本

GNU Make项目管理:英文本

GNU Make项目管理:英文本

定 价:¥58.00

作 者: 美Robert Mecklenburg著
出版社: 东南大学出版社
丛编项: 英文影印版
标 签: UNIX操作系统

ISBN: 9787564100452 出版时间: 2005-06-01 包装: 平装
开本: 24cm 页数: 280 字数:  

内容简介

  众所周知make工具是Unix和其他操作系统上最悠久的特色。make在20世纪70年代被发明,现在仍被作为大多数的编程项目的核心编译辅助工具在使用。它甚至可以构建Linux内核。本书第三版中,你将知道为何在许多新的竞争者出现的情况下这个工具仍在项目构建软件中占据头等位置。make的思路很简单:当你改变了源文件并想重新构建程序或者其他的输出文件时,make检查时间戳看哪些改变了,并按要求重新构建这些文件,而不需要浪费时间重新构建其他文件。但是在这个基本的原则之上,make提供了丰富的选项集合,让你能够操作多个目录,为不同平台构建不同的版本,能够以其他的方式定制你的构建过程。本书第三版主要讨论了GNU版的make,它目前已经成为工业标准。书中仔细讨论了GNUmake的各种扩展。GNUmake非常流行,因为它是自由软件,为几乎每个平台包括MicrosoftWindows(作为自由项目Cygwin的一部分)都提供了不同的版本。RobertMecklenburg——本书第三版的作者,在不同的平台和语言下使用make已经有数十年了。在本书中,他热心地列出了怎样让你的构建尽可能地有效,怎样减少维护,避免错误,并且让你彻底理解make在干什么。关于C++和Java的章节为使用这些语言的项目提供了优化的makefile条目。作者甚至提供了一个关于构建这本书的makefile的讨论。

作者简介

暂缺《GNU Make项目管理:英文本》作者简介

图书目录

le width="100%"><tr><td> Foreword                   </td></tr></table><table width="100%"><tr><td> Preface                   </td></tr></table><table width="100%"><tr><td> Part I. Basic Concepts                  </td></tr></table><table width="100%"><tr><td> 1. How to Write a Simple Makefile                  </td></tr></table><table width="100%"><tr><td> Targets and Prerequisites                   </td></tr></table><table width="100%"><tr><td> Dependency Checking                   </td></tr></table><table width="100%"><tr><td> Minimizing Rebuilds                   </td></tr></table><table width="100%"><tr><td> Invoking make                   </td></tr></table><table width="100%"><tr><td> Basic Makefile Syntax                   </td></tr></table><table width="100%"><tr><td> 2. Rules                  </td></tr></table><table width="100%"><tr><td> Explicit Rules                   </td></tr></table><table width="100%"><tr><td> Variables                   </td></tr></table><table width="100%"><tr><td> Finding Files with VPATH and vpath                   </td></tr></table><table width="100%"><tr><td> Pattern Rules                  </td></tr></table><table width="100%"><tr><td> The Implicit Rules Database                   </td></tr></table><table width="100%"><tr><td> Special Targets                   </td></tr></table><table width="100%"><tr><td> Automatic Dependency Generation                   </td></tr></table><table width="100%"><tr><td> Managing Libraries                   </td></tr></table><table width="100%"><tr><td> 3. Variables and Macros                   </td></tr></table><table width="100%"><tr><td> What Variables Are Used For                   </td></tr></table><table width="100%"><tr><td> Variable Types                   </td></tr></table><table width="100%"><tr><td> Macros                   </td></tr></table><table width="100%"><tr><td> When Variables Are Expanded                   </td></tr></table><table width="100%"><tr><td> Target-and Pattern-Specific Variables                   </td></tr></table><table width="100%"><tr><td> Where Variables Come From                   </td></tr></table><table width="100%"><tr><td> Conditional and include Processing                   </td></tr></table><table width="100%"><tr><td> Standard make Variables                   </td></tr></table><table width="100%"><tr><td> 4. Functions                   </td></tr></table><table width="100%"><tr><td> User-Defined Functions                   </td></tr></table><table width="100%"><tr><td> Built-in Functions                   </td></tr></table><table width="100%"><tr><td> Advanced User-Defined Functions                  </td></tr></table><table width="100%"><tr><td> 5. Commands                   </td></tr></table><table width="100%"><tr><td> Parsing Commands                   </td></tr></table><table width="100%"><tr><td> Which Shell to Use                   </td></tr></table><table width="100%"><tr><td> Empty Commands                   </td></tr></table><table width="100%"><tr><td> Command Environment                   </td></tr></table><table width="100%"><tr><td> Evaluating Commands                   </td></tr></table><table width="100%"><tr><td> Command-Line Limits                   </td></tr></table><table width="100%"><tr><td> Part II. Advanced and Specialized Topics                  </td></tr></table><table width="100%"><tr><td> 6. Managing Large Projects                   </td></tr></table><table width="100%"><tr><td> Recursive make                   </td></tr></table><table width="100%"><tr><td> Nonrecursive make                   </td></tr></table><table width="100%"><tr><td> Components of Large Systems                   </td></tr></table><table width="100%"><tr><td> Filesystem Layout                   </td></tr></table><table width="100%"><tr><td> Automating Builds and Testing                   </td></tr></table><table width="100%"><tr><td> 7. Portable Makefiles                   </td></tr></table><table width="100%"><tr><td> Portability Issues                   </td></tr></table><table width="100%"><tr><td> Cygwin                   </td></tr></table><table width="100%"><tr><td> Managing Programs and Files                   </td></tr></table><table width="100%"><tr><td> Working with Nonportable Tools                   </td></tr></table><table width="100%"><tr><td> Automake                   </td></tr></table><table width="100%"><tr><td> 8. C and C++                   </td></tr></table><table width="100%"><tr><td> Separating Source and Binary                   </td></tr></table><table width="100%"><tr><td> Read-Only Source                   </td></tr></table><table width="100%"><tr><td> Dependency Generation                   </td></tr></table><table width="100%"><tr><td> Supporting Multiple Binary Trees                  </td></tr></table><table width="100%"><tr><td> Partial Source Trees                   </td></tr></table><table width="100%"><tr><td> Reference Builds,Libraries,and Installers                   </td></tr></table><table width="100%"><tr><td> 9. Java                   </td></tr></table><table width="100%"><tr><td> Alternatives to make                   </td></tr></table><table width="100%"><tr><td> A Generic Java Makefile                   </td></tr></table><table width="100%"><tr><td> Compiling Java                   </td></tr></table><table width="100%"><tr><td> Managing Jars                   </td></tr></table><table width="100%"><tr><td> Reference Trees and Third-Party Jars                   </td></tr></table><table width="100%"><tr><td> Enterprise JavaBeans                   </td></tr></table><table width="100%"><tr><td> 10. Improving the Performance of make                   </td></tr></table><table width="100%"><tr><td> Benchmarking                   </td></tr></table><table width="100%"><tr><td> Identifying and Handling Bottlenecks                   </td></tr></table><table width="100%"><tr><td> Parallel make                   </td></tr></table><table width="100%"><tr><td> Distributed make                   </td></tr></table><table width="100%"><tr><td> 11. Example Makefiles                  </td></tr></table><table width="100%"><tr><td> The Book Makefile                   </td></tr></table><table width="100%"><tr><td> The Linux Kernel Makefile                  </td></tr></table><table width="100%"><tr><td> 12. Debugging Makefiles                   </td></tr></table><table width="100%"><tr><td> Debugging Features of make                   </td></tr></table><table width="100%"><tr><td> Writing Code for Debugging                   </td></tr></table><table width="100%"><tr><td> Common Error Messages                   </td></tr></table><table width="100%"><tr><td> Part III. Appendixes                  </td></tr></table><table width="100%"><tr><td> A. Running make                   </td></tr></table><table width="100%"><tr><td> B. The Outer Limits                   </td></tr></table><table width="100%"><tr><td> C. GNU Free Documentation License—GNU Project—Free Software                  </td></tr></table><table width="100%"><tr><td> Foundation (FSF)                   </td></tr></table><table width="100%"><tr><td> Index                   </td></tr></table></font>
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr bgcolor="#CC0000">      <td height="1"></td>  </tr>  <tr>      <td height="5"></td>  </tr>  <tr>    <td>     ·<a href='javascript:moreup("Catalog.asp?IDD=25525&type=1")'>目录</a>·<a href='javascript:moreup("Catalog.asp?IDD=25525&type=2")'>内容简介</a>·<a href='javascript:moreup("Catalog.asp?IDD=25525&type=5")'>作译者</a>·<a href='javascript:moreup("Catalog.asp?IDD=25525&type=6")'>前言</a>·<a href='javascript:moreup("Catalog.asp?IDD=25525&type=7")'>序言</a>    </td>  </tr></table></BODY></H

本目录推荐