Skip to content

erwan-nanrocki/Makefile

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Makefile

What is a Makefile ?

Makefile is a file used by GNU make where dependency relationship are listed. Variable are used to avoid repeation (because coder are lazy). There are two types of action :

  • A Creation / Updating action.
  • A phony action.

You can find a complete guide here

Creation / Updating actions

Those actions just creat or update the file asked. exemple : make greeting or make farewell_dir/objects/say_goodbye.o

phony actions

Those actions just do something, without creating any file. exemple : make clean

Releases

No releases published

Packages

No packages published