Learning by doing: Reading books and trying to understand the (code) examples
 
 
 
 
 

10 lines
104 B

SRC := $(shell ls *.c)
%: %.c
gcc -std=c11 -Wall -Wextra $@.c -o $@
.PHONY: clean
clean:
@rm -f ??