aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 4db1f12be98d66195ea849907123c067b20015aa (plain)
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