1 2 3 4 5 6 7 8 9
.PHONY: all clean all: tetris clean: rm -f tetris tetris: $(wildcard *.c *.h) gcc -Wall -Wextra -std=c11 -O2 -fwrapv -o $@ $(filter %.c,$^) -Itermio termio/libtermio.a