Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

makefile

You are here: irt.org | FOLDOC | 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)

Nearby terms: major release « Make « Makedoc « makefile » Maker Interchange Format » MAL » Malamud

FOLDOC, Topics, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, ?, ALL

©2018 Martin Webb