UNIX in a Nutshell: System V Edition

UNIX in a Nutshell: System V EditionSearch this book
Previous: 19.3 MacrosChapter 19
The make Utility
Next: 19.5 Sample Default Macros, Suffixes, and Rules
 

19.4 Special Target Names

.DEFAULT:

Commands associated with this target are executed if make can't find any description file entries or suffix rules with which to build a requested target.

.IGNORE:

Ignore error codes. Same as the -i option.

.PRECIOUS:

Files you specify for this target are not removed when you send a signal (such as interrupt) that aborts make, or when a command line in your description file returns an error.

.SILENT:

Execute commands but do not echo them. Same as the -s option.

.SUFFIXES:

Suffixes associated with this target are meaningful in suffixes rules. If no suffixes are listed, the existing list of suffix rules are effectively "turned off."


Previous: 19.3 MacrosUNIX in a Nutshell: System V EditionNext: 19.5 Sample Default Macros, Suffixes, and Rules
19.3 MacrosBook Index19.5 Sample Default Macros, Suffixes, and Rules

The UNIX CD Bookshelf NavigationThe UNIX CD BookshelfUNIX Power ToolsUNIX in a NutshellLearning the vi Editorsed & awkLearning the Korn ShellLearning the UNIX Operating System