GNU Make a Program for Directing Recompilation Edition 0.48, for Make Version 3.73 Beta

Total Page:16

File Type:pdf, Size:1020Kb

GNU Make a Program for Directing Recompilation Edition 0.48, for Make Version 3.73 Beta GNU Make A Program for Directing Recompilation Edition 0.48, for make Version 3.73 Beta. April 1995 Richard M. Stallman and Roland McGrath Copyright c 1988, '89, '90, '91, '92, '93, '94, '95 Free Software Founda- tion, Inc. Published by the Free Software Foundation 675 Massachusetts Avenue, Cambridge, MA 02139 USA Printed copies are available for $20 each. ISBN 1-882114-50-7 Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modi®ed versions of this manual under the conditions for verbatim copying, provided that the en- tire resulting derived work is distributed under the terms of a permission notice identical to this one. Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modi®ed versions, except that this permission notice may be stated in a translation ap- proved by the Free Software Foundation. Cover art by Etienne Suvasa. GNU Make 1 Overview of make ............................. 517 1.1 How to Read This Manual ............................. 517 1.2 Problems and Bugs .................................... 518 2 An Introduction to Make®les ............... 519 2.1 What a Rule Looks Like ............................... 519 2.2 A Simple Make®le ..................................... 520 2.3 How make Processes a Make®le ........................ 521 2.4 Variables Make Make®les Simpler ..................... 522 2.5 Letting make Deduce the Commands ................... 523 2.6 Another Style of Make®le .............................. 524 2.7 Rules for Cleaning the Directory ....................... 525 3 Writing Make®les ............................ 527 3.1 What Make®les Contain ............................... 527 3.2 What Name to Give Your Make®le ..................... 528 3.3 Including Other Make®les ............................. 528 3.4 The Variable MAKEFILES................................ 530 3.5 How Make®les Are Remade ............................ 530 3.6 Overriding Part of Another Make®le ................... 531 4 Writing Rules ................................ 533 4.1 Rule Syntax ............................................ 533 4.2 Using Wildcard Characters in File Names ............. 534 4.2.1 Wildcard Examples ........................... 534 4.2.2 Pitfalls of Using Wildcards ................... 535 4.2.3 The Function wildcard ....................... 536 4.3 Searching Directories for Dependencies................ 536 4.3.1 VPATH: Search Path for All Dependencies ..... 537 make 4.3.2 The vpath Directive .......................... 537 4.3.3 Writing Shell Commands with Directory Search .................................................. 539 4.3.4 Directory Search and Implicit Rules .......... 539 4.3.5 Directory Search for Link Libraries .......... 539 4.4 Phony Targets ......................................... 540 4.5 Rules without Commands or Dependencies ............ 542 4.6 Empty Target Files to Record Events .................. 542 4.7 Special Built-in Target Names ......................... 543 4.8 Multiple Targets in a Rule ............................. 544 4.9 Multiple Rules for One Target ......................... 545 cygnus support 513 GNU make 4.10 Static Pattern Rules .................................. 546 4.10.1 Syntax of Static Pattern Rules .............. 546 4.10.2 Static Pattern Rules versus Implicit Rules .. 548 4.11 Double-Colon Rules ................................... 548 4.12 Generating Dependencies Automatically ............. 549 5 Writing the Commands in Rules ............ 553 5.1 Command Echoing ..................................... 553 5.2 Command Execution ................................... 554 5.3 Parallel Execution ..................................... 554 5.4 Errors in Commands ................................... 556 5.5 Interrupting or Killing make ........................... 557 5.6 Recursive Use of make .................................. 557 5.6.1 How the MAKE Variable Works ................ 558 5.6.2 Communicating Variables to a Sub-make ..... 559 5.6.3 Communicating Options to a Sub-make ....... 561 5.6.4 The `--print-directory' Option ............. 563 5.7 De®ning Canned Command Sequences ................ 563 5.8 Using Empty Commands .............................. 564 6 How to Use Variables ........................ 567 6.1 Basics of Variable References .......................... 567 6.2 The Two Flavors of Variables .......................... 568 6.3 Advanced Features for Reference to Variables ......... 570 6.3.1 Substitution References ...................... 571 6.3.2 Computed Variable Names ................... 571 6.4 How Variables Get Their Values ....................... 574 6.5 Setting Variables....................................... 574 6.6 Appending More Text to Variables ..................... 575 6.7 The override Directive ................................ 577 6.8 De®ning Variables Verbatim ........................... 577 6.9 Variables from the Environment ....................... 578 7 Conditional Parts of Make®les.............. 581 7.1 Example of a Conditional .............................. 581 7.2 Syntax of Conditionals ................................. 582 7.3 Conditionals that Test Flags ........................... 585 8 Functions for Transforming Text ........... 587 8.1 Function Call Syntax .................................. 587 8.2 Functions for String Substitution and Analysis ........ 588 8.3 Functions for File Names .............................. 591 8.4 The foreach Function ................................. 594 514 5 March 1997 8.5 The origin Function................................... 595 8.6 The shell Function .................................... 597 9 How to Run make ............................. 599 9.1 Arguments to Specify the Make®le..................... 599 9.2 Arguments to Specify the Goals ........................ 599 9.3 Instead of Executing the Commands ................... 601 9.4 Avoiding Recompilation of Some Files ................. 603 9.5 Overriding Variables ................................... 603 9.6 Testing the Compilation of a Program ................. 604 9.7 Summary of Options ................................... 605 10 Using Implicit Rules........................ 611 10.1 Using Implicit Rules .................................. 611 10.2 Catalogue of Implicit Rules ........................... 612 10.3 Variables Used by Implicit Rules ..................... 616 10.4 Chains of Implicit Rules .............................. 618 10.5 De®ning and Rede®ning Pattern Rules ............... 619 10.5.1 Introduction to Pattern Rules ............... 620 10.5.2 Pattern Rule Examples ...................... 621 10.5.3 Automatic Variables ......................... 622 10.5.4 How Patterns Match ........................ 624 10.5.5 Match-Anything Pattern Rules .............. 625 10.5.6 Canceling Implicit Rules .................... 626 10.6 De®ning Last-Resort Default Rules................... 626 10.7 Old-Fashioned Suf®x Rules ........................... 627 10.8 Implicit Rule Search Algorithm....................... 629 11 Using make to Update Archive Files ....... 631 11.1 Archive Members as Targets.......................... 631 11.2 Implicit Rule for Archive Member Targets ............ 631 11.2.1 Updating Archive Symbol Directories ....... 632 11.3 Dangers When Using Archives ....................... 633 make 11.4 Suf®x Rules for Archive Files ......................... 633 12 Features of GNU make ...................... 635 13 Incompatibilities and Missing Features .. 639 cygnus support 515 GNU make 14 Make®le Conventions ...................... 641 14.1 General Conventions for Make®les ................... 641 14.2 Utilities in Make®les ................................. 642 14.3 Standard Targets for Users ........................... 642 14.4 Variables for Specifying Commands .................. 646 14.5 Variables for Installation Directories ................. 647 Appendix A Quick Reference ................. 653 Appendix B Complex Make®le Example ..... 659 Index of Concepts ............................... 665 Index of Functions, Variables, & Directives ... 673 516 5 March 1997 Chapter 1: Overview of make 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 gnu make, which was implemented by Richard Stallman and Roland McGrath. gnu make conforms to section 6.2 of IEEE Standard 1003.2-1992 (POSIX.2). Our examples show C programs, since they are most common, but you can use make with any programming language whose compiler can be run with a shell command. Indeed, make is not limited to programs. You can use it to describe any task where some ®les must be updated automatically from others whenever the others change. To prepare to use make, you must write a ®le called the make®le that describes the relationships among ®les in your program and provides commands for updating each ®le. In a program, typically, the executable ®le is updated from object ®les, which are in turn made by compiling source ®les. Once a suitable make®le exists, each time you change some source ®les, this simple shell command: make suf®ces to perform all necessary recompilations. The make program uses the make®le data base and the last-modi®cation times of the ®les to decide which of the ®les need to be updated. For each of those ®les, it issues the commands recorded
Recommended publications
  • Visual Basic 6.0 Internet Programming:Table of Contents
    To access the contents, click the chapter and section titles. Visual Basic 6.0 Internet Programming (Publisher: John Wiley & Sons, Inc.) Author(s): Carl Franklin ISBN: 0471314986 Publication Date: 02/01/99 Brief Full Advanced Search Search this book: Search Tips FOREWORD CHAPTER 1—THE INTERNET Attack of the Buzzwords! Protocols and Data Protocol Stacks and the OSI Model TCP/IP Names and Addresses Ports Name Resolution Sockets The TCP/IP Model CHAPTER 2—WINSOCK PROGRAMMING Introduction Why Not Use the Winsock API? Installing the Software Loading DSSOCK32.OCX into Visual Basic DSSOCK.BAS SocketConnect IsDotAddress ParseString Getting Started with dsSocket Making a Sockets Connection What’s Going On Here? SocketID and the Socket Property Closing the Connection Handling Multiple Connections on the Server Side Sending Data Receiving Data LineMode, EOLChar, and DataSize The Simple Approach A New Twist Splitting Up the Process with Flags A Slight Variation Event Driven = No Loops Which Approach Is Better? Error Handling Winsock Errors Error-Handling Techniques Minimal Error Trapping Debug.Print Error Trapping Message Dialog Reporting Error Log Reporting UDP—User Datagram Protocol Terminal—A Winsock Terminal Program Epilogue CHAPTER 3—SIMPLE PROTOCOLS Introduction NTP (Network Time Protocol) WHOIS FINGER SetTime Application Epilogue CHAPTER 4—USENET NEWS Introduction NNTP MessageIDs vs. Message Numbers NNTP Versions NNTP Commands Sample Conversation The WILDMAT Format Server Responses Usenet Article Format VB Programming Technique String Parsing
    [Show full text]
  • CLI Maintenance Guide
    ARX CLI Maintenance Guide 810-0045-00 Publication Date This manual was published on September 24, 2012. Legal Notices Copyright Copyright 2006-9/24/12, F5 Networks, Inc. All rights reserved. F5 Networks, Inc. (F5) believes the information it furnishes to be accurate and reliable. However, F5 assumes no responsibility for the use of this information, nor any infringement of patents or other rights of third parties which may result from its use. No license is granted by implication or otherwise under any patent, copyright, or other intellectual property right of F5 except as specifically described by applicable user licenses. F5 reserves the right to change specifications at any time without notice. Trademarks 3DNS, Access Policy Manager, Acopia, Acopia Networks, Advanced Client Authentication, Advanced Routing, APM, Application Security Manager, ARX, AskF5, ASM, BIG-IP, Cloud Extender, CloudFucious, Clustered Multiprocessing, CMP, COHESION, Data Manager, DevCentral, DevCentral [DESIGN], DSI, DNS Express, DSC, Edge Client, Edge Gateway, Edge Portal, ELEVATE, EM, Enterprise Manager, ENGAGE, F5, F5 [DESIGN], F5 Management Pack, F5 Networks, F5 World, Fast Application Proxy, Fast Cache, FirePass, Global Traffic Manager, GTM, GUARDIAN, IBR, Intelligent Browser Referencing, Intelligent Compression, IPv6 Gateway, iApps, iControl, iHealth, iQuery, iRules, iRules OnDemand, iSession, IT agility. Your way., L7 Rate Shaping, LC, Link Controller, Local Traffic Manager, LTM, Message Security Module, MSM, Netcelera, OneConnect, OpenBloX, OpenBloX [DESIGN],
    [Show full text]
  • GNU Make-4.1 Manual
    GNU Make GNU Make A Program for Directing Recompilation GNU make Version 4.1 October 2014 Richard M. Stallman, Roland McGrath, Paul D. Smith This file documents the GNU make utility, which determines automatically which pieces of a large program need to be recompiled, and issues the commands to recompile them. This is Edition 0.73, last updated 5 October 2014, of The GNU Make Manual, for GNU make version 4.1. Copyright c 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with the Front-Cover Texts being \A GNU Manual," and with the Back-Cover Texts as in (a) below. A copy of the license is included in the section entitled \GNU Free Documentation License." (a) The FSF's Back-Cover Text is: \You have the freedom to copy and modify this GNU manual. Buying copies from the FSF supports it in developing GNU and promoting software freedom." Published by the Free Software Foundation 51 Franklin St. { Fifth Floor Boston, MA 02110-1301 USA ISBN 1-882114-83-3 Cover art by Etienne Suvasa. i Short Contents 1 Overview of make :::::::::::::::::::::::::::::::::::::::::::::::::::: 1 2 An Introduction to Makefiles ::::::::::::::::::::::::::::::::::::::::::: 3 3 Writing Makefiles ::::::::::::::::::::::::::::::::::::::::::::::::::::
    [Show full text]
  • Linux All-In-One for Dummies, 5Th Edition Is the Ideal
    Getting Computers/Operating Systems/Linux Linux L Administration inux The Networking Started Scripting Security Certification Internet Desktops ™ with verything Easier! 5th ition Ed E Linux Making Get up and running 5th Edition with the popular Linux operating system Open the book and find: ® • An easy-to-understand Are you a Linux user looking to take your skills to the next introduction to Linux level? Linux All-in-One For Dummies, 5th Edition is the ideal, • How to install and configure Linux user-friendly resource for anyone looking to get familiar peripherals with Linux, and includes a test-prep section for those ALL-IN-ONE studying to pass the Level-1 Linux certification. Everything • Ways to work with the shell and try out basic commands LinuxALL-IN-ONE you need is right here at your fingertips! • Helpful screenshots and • Boot up with the basics — find out how to successfully install, plain-English descriptions troubleshoot, and configure Linux distros • How to set up Ethernet • Keep it secure — get a high-level view of how to use security networking on your Linux to keep your overall framework protected system ® • Get connected — discover how to connect your Linux system • The latest on virtual machines to the Internet, whether you have a DSL or cable modem • A primer on TCP/IP • Know the GNOME (and more) — learn all about desktops, including GNOME’s common features, GNOME panels, • Working with files, folders, Unity, and Cinnamon and permissions • Be a programming pro — start programming in Linux, write shell scripts, edit text in vi, and become a champion of Cover Image: © iStock.com/Coldimages programming in C BOOKS IN Emmett Dulaney has authored over thirty books, including the rd 8 CompTIA Security+ Guide, 3 Edition.
    [Show full text]
  • GNU Make-3.81 Manual
    GNU Make GNU Make A Program for Directing Recompilation GNU make Version 3.81 April 2006 Richard M. Stallman, Roland McGrath, Paul D. Smith This file documents the GNU make utility, which determines automatically which pieces of a large program need to be recompiled, and issues the commands to recompile them. This is Edition 0.70, last updated 1 April 2006, of The GNU Make Manual, for GNU make version 3.81. Copyright c 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, with the Front-Cover Texts being \A GNU Manual," and with the Back-Cover Texts as in (a) below. A copy of the license is included in the section entitled \GNU Free Documentation License." (a) The FSF's Back-Cover Text is: \You have freedom to copy and modify this GNU Manual, like GNU software. Copies published by the Free Software Foundation raise funds for GNU development." Published by the Free Software Foundation 51 Franklin St. { Fifth Floor Boston, MA 02110-1301 USA ISBN 1-882114-83-5 Cover art by Etienne Suvasa. i Short Contents 1 Overview of make :::::::::::::::::::::::::::::::::::::::::::::::::::: 1 2 An Introduction to Makefiles ::::::::::::::::::::::::::::::::::::::::::: 3 3 Writing Makefiles :::::::::::::::::::::::::::::::::::::::::::::::::::: 9 4 Writing
    [Show full text]
  • Internet News
    INN InterNet News Computer Center, CS, NCTU CS, Computer Center, Introduction to INN (1) Originally written by Rich Salz • ISC took over development in 1996 • http://www.isc.org/software/inn INN is a complete Usenet system • innd – NNTP server, main program, inbound receiver Exchange news articles with peers innfeed: outbound, feed articles to peers • nnrpd – NNTP reader server • Separate readers and peers For readers: readers.conf For peers: incoming.conf、innfeed.conf、newsfeeds • A lot of components… 2 Computer Center, CS, NCTU CS, Computer Center, Introduction to INN (2) 3 Computer Center, CS, NCTU CS, Computer Center, Introduction to INN (3) Main configuration • inn.conf Components • innd – main daemon for peers (and users) incoming.conf • innfeed – NNTP feeder innfeed.conf、newsfeeds • nnrpd – for users readers.conf • Newsgroups database active、active.times、newsgroups、history • Overview database buffindexed.conf、ovdb.conf、overview.fmt • Spool storage.conf、cycbuff.conf 4 Computer Center, CS, NCTU CS, Computer Center, Introduction to INN (4) Specific functions • Article and history expiration expire.ctl • Handling of control messages control.ctl • Submission addresses for moderated groups moderators • Cron jobs news.daily • Summery of INN log files innreports.conf • Others … 5 INN Installation Computer Center, CS, NCTU CS, Computer Center, Install INN (1) In FreeBSD ports • news/inn: INN 2.4.6 • 2009-06-08 - INN 2.4.6 was made EOL by the release of 2.5.0. • 2010-Mar-25 - INN v2.5.2 , ISC is pleased to announce a
    [Show full text]
  • The Zkl Programming Language Reference Manual
    The zkl Programming Language Reference Manual Craig Durland Copyright © 2006,2007-13, 2014 Craig Durland All Rights Reserved You can distribute this document and/or modify it under the terms of the Creative Commons Attribution-NonCommercial License, version 3.0 (http://creativecommons.org/licenses/by-nc/3.0/). Feedback Please direct comments and suggestions about this document to: [email protected] See Also For more on zkl, including downloads (and an electronic copy of this book), please visit http://zenkinetic.com/ Publication history ● March 2008 ● July 2008 ● January 2010, updated for zkl version 1.1 ● December 2010, updated for zkl version 1.3 ● June 2011, updated for zkl version 1.5.2 ● December 2011, updated for zkl version 1.6 ● August 2012, updated for zkl version 1.7 ● June 2013, updated for zkl version 1.10 ● September 2013, updated for zkl version 1.12 ● June 2015, updated for zkl version 1.12.21 ● January 2017, updated for zkl version 1.12.38 ● December 2018, updated for zkl version 1.14.1 Contents The Young Person's Guide to zkl...........................1 onExit..............................................................55 Getting Started.............................................2 pimport (packaging)........................................57 Data Things: Numbers, Strings, etc.............3 print, println....................................................60 Branching.....................................................4 [ ] (Range).......................................................61 Loops............................................................4
    [Show full text]
  • Porting UNIX Applications to Openedition for VM/ESA
    Porting UNIX Applications to OpenEdition for VM/ESA Erich Amrehn, Neale Ferguson, Jean-Francois Jiguet International Technical Support Organization http://www.redbooks.ibm.com SG24-5458-00 International Technical Support Organization SG24-5458-00 Porting UNIX Applications to OpenEdition for VM/ESA August 1999 Take Note! Before using this information and the product it supports, be sure to read the general information in Appendix M, “Special Notices” on page 337. First Edition (August 1999) This edition applies to Virtual Machine/Enterprise Systems Architecture (VM/ESA) Version 2, Release 3.0, program number 5654-030 for use with OpenEdition for VM/ESA. Comments may be addressed to: IBM Corporation, International Technical Support Organization Dept. HYJ Mail Station P099 522 South Road Poughkeepsie, NY 12601-5400 When you send information to IBM, you grant IBM a non-exclusive right to use or distribute the information in any way it believes appropriate without incurring any obligation to you. © Copyright International Business Machines Corporation 1999. All rights reserved. Note to U.S Government Users - Documentation related to restricted rights - Use, duplication or disclosure is subject to restrictions set forth in GSA ADP Schedule Contract with IBM Corp. Contents Figures ......................................................xi Tables .......................................................xv Preface .....................................................xvii The team that wrote this redbook ......................................xvii Commentswelcome...............................................xviii
    [Show full text]
  • Vysoké Učení Technické V Brně
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Digital library of Brno University of Technology VYSOKÉ U ČENÍ TECHNICKÉ V BRN Ě BRNO UNIVERSITY OF TECHNOLOGY FAKULTA INFORMA ČNÍCH TECHNOLOGIÍ ÚSTAV INFORMA ČNÍCH SYSTÉM Ů FACULTY OF INFORMATION TECHNOLOGY DEPARTMENT OF INFORMATION SYSTEMS NNTP SERVER JAKO SLUŽBA PRO SYSTÉMY ZALOŽENÉ NA TECHNOLOGII WINDOWS-NT DIPLOMOVÁ PRÁCE MASTER‘S THESIS AUTOR PRÁCE BC. JOSEF LOUPANEC AUTHOR BRNO 2007 VYSOKÉ U ČENÍ TECHNICKÉ V BRN Ě BRNO UNIVERSITY OF TECHNOLOGY FAKULTA INFORMA ČNÍCH TECHNOLOGIÍ ÚSTAV INFORMA ČNÍCH SYSTÉM Ů FACULTY OF INFORMATION TECHNOLOGY DEPARTMENT OF INFORMATION SYSTEMS NNTP SERVER JAKO SLUŽBA PRO SYSTÉMY ZALOŽENÉ NA TECHNOLOGII WINDOWS-NT NNTP SERVER AS A WINDOWS NETWORK SERVICE DIPLOMOVÁ PRÁCE MASTER‘S THESIS AUTOR PRÁCE BC. JOSEF LOUPANEC AUTHOR VEDOUCÍ PRÁCE ING. PAVEL O ČENÁŠEK SUPERVISOR BRNO 2007 NNTP server jako služba pro systémy založené na technologii Windows-NT Vedoucí: Očenášek Pavel, Ing., UIFS FIT VUT Přihlášen: Loupanec Josef, Bc. Zadání: 1. Seznamte se s protokoly NNTP, HTTP, případně s jejich zabezpečenými variantami, podle příslušných RFC. 2. Seznamte se s možnostmi tvorby aplikací v prostředí Windows-NT (resp. Win- XP). Především se zaměřte na implementaci služeb (services). 3. Navrhněte vlastní diskuzní server umožňující práci s uvedenými protokoly. Server bude umět pracovat s lokálními diskuzními složkami (víceuživatelský přístup) a případně předávat požadavky na vzdálené diskuzní servery. 4. Donávrhu zahrňte vzdálené stahování diskuzních příspěvků z jiných serverů. 5. Navržený server implemetujte jakoslužbu pro prostředí Win-NT. 6. Zhodnoťte dosažené výsledky a diskutujte další možnosti rozšíření. Část požadovaná pro obhajobu SP: Body 1 - 4.
    [Show full text]
  • OBJECT REFERENCE MANUAL Firmware Versions 6.0.X
    OBJECT REFERENCE MANUAL Firmware Versions 6.0.x BrightSign, LLC. 16780 Lark Ave., Suite B Los Gatos, CA 95032 | 408-852-9263 | www.brightsign.biz 1 TABLE OF CONTENTS INTRODUCTION ................................................................................................................ 1 INTERFACES AND METHODS OVERVIEW ..................................................................... 2 Classes .............................................................................................................................................................................. 3 Object and Class Name Syntax ......................................................................................................................................... 3 Zones................................................................................................................................................................................. 3 Event Loops ....................................................................................................................................................................... 4 BrightSign Object Library ................................................................................................................................................... 5 BRIGHTSCRIPT CORE OBJECTS .................................................................................... 6 roArray ..............................................................................................................................................................................
    [Show full text]
  • GNU Make Manual, for GNU Make Version 4.3
    GNU Make GNU Make A Program for Directing Recompilation GNU make Version 4.3 January 2020 Richard M. Stallman, Roland McGrath, Paul D. Smith This file documents the GNU make utility, which determines automatically which pieces of a large program need to be recompiled, and issues the commands to recompile them. This is Edition 0.75, last updated 17 January 2020, of The GNU Make Manual, for GNU make version 4.3. Copyright c 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with the Front-Cover Texts being \A GNU Manual," and with the Back-Cover Texts as in (a) below. A copy of the license is included in the section entitled \GNU Free Documentation License." (a) The FSF's Back-Cover Text is: \You have the freedom to copy and modify this GNU manual. Buying copies from the FSF supports it in developing GNU and promoting software freedom." Published by the Free Software Foundation 51 Franklin St. { Fifth Floor Boston, MA 02110-1301 USA ISBN 1-882114-83-3 Cover art by Etienne Suvasa. i Short Contents 1 Overview of make:::::::::::::::::::::::::::::::::::::: 1 2 An Introduction to Makefiles :::::::::::::::::::::::::::: 3 3 Writing Makefiles:::::::::::::::::::::::::::::::::::::
    [Show full text]