4. make - calling targets

make targetname

can be used to override the default of starting with the first target, but instead call the build of a specific target independently from its position in the make file. This is extremely useful for cleaning the work folder from leftovers from older builds.

clean:
	 rm *.txt


Hendrik Heinl

Copyright Notice