1 # set some compiler flags
4 # find *.c in the current directory
5 SOURCES=$(wildcard *.c)
7 # define the output objects by replacing .c with .o
10 # this will make all objects
13 # each objects will be build by a *.c file
18 # this will delete all objects
19 # if not all objects are there, they will be compiled first