Make (software)


In software development, Make is a build automation tool that automatically builds executable programs and libraries from source code by reading files called Makefiles which specify how to derive the target program. Though integrated development environments and language-specific compiler features can also be used to manage a build process, Make remains widely used, especially in Unix and Unix-like operating systems.
Besides building programs, Make can be used to manage any project where some files must be updated automatically from others whenever the others change.

Origin

There are now a number of dependency-tracking build utilities, but Make is one of the most widespread, primarily due to its inclusion in Unix, starting with the PWB/UNIX 1.0, which featured a variety of tools targeting software development tasks. It was originally created by Stuart Feldman in April 1976 at Bell Labs. Feldman received the 2003 ACM Software System Award for the authoring of this widespread tool.
Feldman was inspired to write Make by the experience of a coworker in futilely debugging a program of his where the executable was accidentally not being updated with changes:
Before Make's introduction, the Unix build system most commonly consisted of operating system dependent "make" and "install" shell scripts accompanying their program's source. Being able to combine the commands for the different targets into a single file and being able to abstract out dependency tracking and archive handling was an important step in the direction of modern build environments.

Derivatives

Make has gone through a number of rewrites, including a number of from-scratch variants which used the same file format and basic algorithmic principles and also provided a number of their own non-standard enhancements. Some of them are:
POSIX includes standardization of the basic features and operation of the Make utility, and is implemented with varying degrees of completeness in Unix-based versions of Make. In general, simple makefiles may be used between various versions of Make with reasonable success. GNU Make, Makepp and some versions of BSD Make default to looking first for files named "GNUmakefile", "Makeppfile" and "BSDmakefile" respectively, which allows one to put makefiles which use implementation-defined behavior in separate locations.

Behavior

Make is typically used to build executable programs and libraries from source code. Generally though, Make is applicable to any process that involves executing arbitrary commands to transform a source file to a target result. For example, Make could be used to detect a change made to an image file and the transformation actions might be to convert the file to some specific format, copy the result into a content management system, and then send e-mail to a predefined set of users indicating that the above actions were performed.
Make is invoked with a list of target file names to build as command-line arguments:

make

Without arguments, Make builds the first target that appears in its makefile, which is traditionally a symbolic "phony" target named all.
Make decides whether a target needs to be regenerated by comparing file modification times. This solves the problem of avoiding the building of files which are already up to date, but it fails when a file changes but its modification time stays in the past. Such changes could be caused by restoring an older version of a source file, or when a network filesystem is a source of files and its clock or time zone is not synchronized with the machine running Make. The user must handle this situation by forcing a complete build. Conversely, if a source file's modification time is in the future, it triggers unnecessary rebuilding, which may inconvenience users.

Makefile

Make searches the current directory for the makefile to use, e.g. GNU Make searches files in order for a file named one of GNUmakefile, makefile, Makefile and then runs the specified target from that file.
The makefile language is similar to declarative programming. This class of language, in which necessary end conditions are described but the order in which actions are to be taken is not important, is sometimes confusing to programmers used to imperative programming.
One problem in build automation is the tailoring of a build process to a given platform. For instance, the compiler used on one platform might not accept the same options as the one used on another. This is not well handled by Make. This problem is typically handled by generating platform-specific build instructions, which in turn are processed by Make. Common tools for this process are Autoconf, CMake or GYP.

Rules

A makefile consists of rules. Each rule begins with a textual dependency line which defines a target followed by a colon and optionally an enumeration of components on which the target depends. The dependency line is arranged so that the target depends on components. It is common to refer to components as prerequisites of the target.
target :

.
.
.

Usually each rule has a single unique target, rather than multiple targets.
For example, a C.o object file is created from.c files, so.c files come first. Because Make itself does not understand, recognize or distinguish different kinds of files, this opens up a possibility for human error. A forgotten or an extra dependency may not be immediately obvious and may result in subtle bugs in the generated software. It is possible to write makefiles which generate these dependencies by calling third-party tools, and some makefile generators, such as the Automake toolchain provided by the GNU Project, can do so automatically.
Each dependency line may be followed by a series of TAB indented command lines which define how to transform the components into the target. If any of the prerequisites has a more recent modification time than the target, the command lines are run. The GNU Make documentation refers to the commands associated with a rule as a "recipe".
The first command may appear on the same line after the prerequisites, separated by a semicolon,

targets : prerequisites ; command

for example,

hello: ; @echo "hello"

Make can decide where to start through topological sorting.
Each command line must begin with a tab character to be recognized as a command. The tab is a whitespace character, but the space character does not have the same special meaning. This is problematic, since there may be no visual difference between a tab and a series of space characters. This aspect of the syntax of makefiles is often subject to criticism; it has been described by Eric S. Raymond as "one of the worst design botches in the history of Unix" and The Unix-Haters Handbook said "using tabs as part of the syntax is like one of those pungee stick traps in The Green Berets". Feldman explains the choice as caused by a workaround for an early implementation difficulty preserved by a desire for backward compatibility with the very first users:
However, the GNU Make since version 3.82 allows to choose any symbol as the recipe prefix using the.RECIPEPREFIX special variable, for example:

.RECIPEPREFIX := :
all:

Each command is executed by a separate shell or command-line interpreter instance. Since operating systems use different command-line interpreters this can lead to unportable makefiles. For instance, GNU Make by default executes commands with /bin/sh, where Unix commands like cp are normally used. In contrast to that, Microsoft's nmake executes commands with cmd.exe where batch commands like copy are available but not necessarily cp.
A rule may have no command lines defined. The dependency line can consist solely of components that refer to targets, for example:

realclean: clean distclean

The command lines of a rule are usually arranged so that they generate the target. An example: if file.html is newer, it is converted to text. The contents of the makefile:

file.txt: file.html
lynx -dump file.html > file.txt

The above rule would be triggered when Make updates "file.txt". In the following invocation, Make would typically use this rule to update the "file.txt" target if "file.html" were newer.

make file.txt

Command lines can have one or more of the following three prefixes:
Ignoring errors and silencing echo can alternatively be obtained via the special targets ".IGNORE" and ".SILENT".
Microsoft's NMAKE has predefined rules that can be omitted from these makefiles, e.g. "c.obj $$".

Macros

A makefile can contain definitions of macros. Macros are usually referred to as variables when they hold simple string definitions, like "CC=clang". Macros in makefiles may be overridden in the command-line arguments passed to the Make utility. Environment variables are also available as macros.
Macros allow users to specify the programs invoked and other custom behavior during the build process. For example, the macro "CC" is frequently used in makefiles to refer to the location of a C compiler, and the user may wish to specify a particular compiler to use.
New macros are traditionally defined using capital letters:

MACRO = definition

A macro is used by expanding it. Traditionally this is done by enclosing its name inside $. An equivalent form uses curly braces rather than parentheses, i.e. $, which is the style used in the BSDs.

NEW_MACRO = $-$

Macros can be composed of shell commands by using the command substitution operator, denoted by backticks.

YYYYMMDD = ` date `

The content of the definition is stored "as is". Lazy evaluation is used, meaning that macros are normally expanded only when their expansions are actually required, such as when used in the command lines of a rule. An extended example:

PACKAGE = package
VERSION = ` date +"%Y.%m%d" `
ARCHIVE = $-$
dist:
# Notice that only now macros are expanded for shell to interpret:
# tar -cf package-`date +"%Y%m%d"`.tar
tar -cf $.tar.

The generic syntax for overriding macros on the command line is:

make MACRO="value" TARGET

Makefiles can access any of a number of predefined internal macros, with '?' and '@' being the most common.

target: component1 component2
# contains those components which need attention.
echo $?
# evaluates to current TARGET name from among those left of the colon.
echo $@

A somewhat common syntax expansion is the use of,, and instead of the equal sign. It works on BSD and GNU makes alike.

Suffix rules

Suffix rules have "targets" with names in the form .FROM.TO and are used to launch actions based on file extension. In the command lines of suffix rules, POSIX specifies that the internal macro $< refers to the first prerequisite and $@ refers to the target. In this example, which converts any HTML file into text, the shell redirection token > is part of the command line whereas $< is a macro referring to the HTML file:

.SUFFIXES:.txt.html
  1. From.html to.txt
.html.txt:
lynx -dump $< > $@

When called from the command line, the above example expands.

$ make -n file.txt
lynx -dump file.html > file.txt

Pattern rules

Suffix rules cannot have any prerequisites of their own. If they have any, they are treated as normal files with unusual names, not as suffix rules. GNU Make supports suffix rules for compatibility with old makefiles but otherwise encourages usage of pattern rules.
A pattern rule looks like an ordinary rule, except that its target contains exactly one character '%'. The target is considered a pattern for matching file names: the '%' can match any substring of zero or more characters, while other characters match only themselves. The prerequisites likewise use '%' to show how their names relate to the target name.
The above example of a suffix rule would look like the following pattern rule:

  1. From %.html to %.txt
%.txt : %.html
lynx -dump $< > $@

Other elements

Single-line comments are started with the hash symbol.
Some directives in makefiles can include other makefiles.
Line continuation is indicated with a backslash \ character at the end of a line.
target: component \
component
command ; \
command | \
piped-command

Example makefiles

Makefiles are traditionally used for compiling code, but they can also be used for providing commands to automate common tasks. One such makefile is called from the command line:

make # Without argument runs first TARGET
make help # Show available TARGETS
make dist # Make a release archive from current dir

The makefile:

PACKAGE = package
VERSION = ` date "+%Y.%m%d%" `
RELEASE_DIR =..
RELEASE_FILE = $-$
  1. Notice that the variable LOGNAME comes from the environment in
  2. POSIX shells.
  3. target: all - Default target. Does nothing.
all:
echo "Hello $, nothing to do by default"
# sometimes: echo "Hello $, nothing to do by default"
echo "Try 'make help'"
  1. target: help - Display callable targets.
help:
egrep "^# target:" akefile
  1. target: list - List source files
list:
# Won't work. Each command is in separate shell
cd src
ls
# Correct, continuation of the same shell
cd src; \
ls
  1. target: dist - Make a release.
dist:
tar -cf $/$ && \
gzip -9 $/$.tar

Below is a very simple makefile that by default compiles a source file called "helloworld.c" using the system's C compiler and also provides a "clean" target to remove the generated files if the user desires to start over. The $@ and $< are two of the so-called internal macros and stand for the target name and "implicit" source, respectively. In the example below, $^ expands to a space delimited list of the prerequisites. There are a number of other internal macros.

CFLAGS ?= -g
all: helloworld
helloworld: helloworld.o
# Commands start with TAB not spaces
$ $ -o $@ $^
helloworld.o: helloworld.c
$ $ -c -o $@ $<
clean: FRC
rm -f helloworld helloworld.o
  1. This pseudo target causes all targets that depend on FRC
  2. to be remade even in case a file with the name of the target exists.
  3. This works with any make implementation under the assumption that
  4. there is no file FRC in the current directory.
FRC:

Many systems come with predefined Make rules and macros to specify common tasks such as compilation based on file suffix. This lets users omit the actual instructions of how to generate the target from the source. On such a system the above makefile could be modified as follows:

all: helloworld
helloworld: helloworld.o
$ $ $ -o $@ $^
clean: FRC
rm -f helloworld helloworld.o
  1. This is an explicit suffix rule. It may be omitted on systems
  2. that handle simple rules like this automatically.
.c.o:
$ $ -c $<
FRC:
.SUFFIXES:.c

That "helloworld.o" depends on "helloworld.c" is now automatically handled by Make. In such a simple example as the one illustrated here this hardly matters, but the real power of suffix rules becomes evident when the number of source files in a software project starts to grow. One only has to write a rule for the linking step and declare the object files as prerequisites. Make will then implicitly determine how to make all the object files and look for changes in all the source files.
Simple suffix rules work well as long as the source files do not depend on each other and on other files such as header files. Another route to simplify the build process is to use so-called pattern matching rules that can be combined with compiler-assisted dependency generation. As a final example requiring the gcc compiler and GNU Make, here is a generic makefile that compiles all C files in a folder to the corresponding object files and then links them to the final executable. Before compilation takes place, dependencies are gathered in makefile-friendly format into a hidden file ".depend" that is then included to the makefile. Portable programs ought to avoid constructs used below.

  1. Generic GNUMakefile
  2. Just a snippet to stop executing under other make commands
  3. that won't understand these lines
ifneq
This makefile requires GNU Make.
endif
PROGRAM = foo
C_FILES := $
OBJS := $
CC = cc
CFLAGS = -Wall -pedantic
LDFLAGS =
LDLIBS = -lm
all: $
$:.depend $
$ $ $ $ -o $ $
depend:.depend
.depend: cmd = gcc -MM -MF depend $; cat depend >>.depend;
.depend:
@echo "Generating dependencies..."
@$, $)
@rm -f depend
-include.depend
  1. These are the pattern matching rules. In addition to the automatic
  2. variables used here, the variable $* that matches whatever % stands for
  3. can be useful in special cases.
%.o: %.c
$ $ -c $< -o $@
%: %.c
$ $ -o $@ $<
clean:
rm -f.depend $
.PHONY: clean depend