Next
Previous
Contents
An introduction to Makefiles
Garrett Mitchener, wgm2@acpub.duke.edu
January 19, 1999
The make program on Unix is great for managing compiled projects. It
allows you to specify which files are created from which others, and
what commands to run to update the created files when the ones they
depend on are changed. This document has a lot of information which
is specific to the GNU project's implementation of make. On the
acpub
and cs
computer systems, it is run by typing
gmake
to avoid confusion with the Solaris make
program.
Next
Previous
Contents