aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: c5521da17b2e27b2ee91def1c747ae435fe6985a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: all clean

all: tetris

clean:
	rm -f tetris

tetris: $(wildcard *.c *.h) termio termio/libtermio.a
	gcc -Wall -Wextra -std=c11 -O2 -fwrapv -o $@ $(filter %.c,$^) -Itermio termio/libtermio.a

termio:
	git submodule update --init --recursive

termio/libtermio.a:
	make -C termio