|
Makefile - Dictionary Definition and Overview |
|
Makefile :
A script which tells the Unix program "{make" how to build a
particular computer program or set of programs. A makefile
contains variable assignments and rules of the form
target: inputs
commands
which say if any of the files in "inputs" has been modified
more recently than file "target" (or if the target does not
exist) then execute "commands", which will normally bulid
"target" from "inputs".
If make is run with no arguments, it looks for a makefile
called "Makefile" or "makefile".
(1995-01-05)
|
|
|
|
Example Usage of Makefile |
 |
unixlinux: Trouble wit hflex command in Makefile: sry duplicate http://bit.ly/6zyi42 |
 |
unixlinux: Trouble with flex command in Makefile: sry duplicate http://bit.ly/4qC8bM |
 |
unixlinux: Trouble wit hflex command in Makefile: Hey all, im trying to create a Makefile in unix. cpp2html is a program creat... http://bit.ly/5YeBUQ |
|