摘要:
继续翻译1.2 Problems and Bugs ===================== If you have problems with GNU `make' or think you've found a bug, please report it to the developers; we cannot promise to do anything but we might well want to fix it. Before reporting a bug, make sure you've actually found a... 阅读全文
摘要:
继续翻译1.1 How to Read This Manual =========================== If you are new to `make', or are looking for a general introduction, read the first few sections of each chapter, skipping the later sections. In each chapter, the first few sections contain introductory or general infor... 阅读全文
摘要:
继续翻译Preparing and Running Make ========================== To prepare to use `make', you must write a file called the makefile that describes the relationships among files in your program and provides commands for updating each file. In a program, typically, the executable file... 阅读全文
摘要:
当分析PostgreSQL 的源代码的时候,经常遇到 Makefile,读不懂其中的语句,很是令人烦恼。最近准备静下心来,好好地阅读。为了达到这一目的,进行一次翻译。1 Overview of `make' ******************** The `make' utility automatically determines which pieces of a large program need to be recompiled, and issues commands to recompile them. This manual describes... 阅读全文
摘要:
在gram.c 中,有一行:#define yyparse base_yyparse看gram.y 中,与此对应的是: %name-prefix="base_yy"而看 bison 的 manual:http://www.gnu.org/software/bison/manual/html_node/Parser-Function.html4.1 The Parser FunctionyyparseYou call the functionyyparseto cause parsing to occur. This function reads tokens, execut 阅读全文