[prev] 30 [next]

Make/Makefiles (cont)

make is driven by dependencies given in a Makefile

A dependency specifies

target : source1 source2commands to build target from sources

e.g.

game : main.o graphics.o world.o
	gcc -o game main.o graphics.o world.o

Rule: target is rebuilt if older than any sourcei