From 16a5cf9ba310729f8a76115b4f39315a7272d8f0 Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Wed, 7 Feb 2018 21:32:20 +0100 Subject: Actually working HEAD^^ --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c5521da..327282c 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,17 @@ -.PHONY: all clean +.PHONY: all clean termio all: tetris clean: rm -f tetris +termio: termio/.git termio/libtermio.a + + tetris: $(wildcard *.c *.h) termio termio/libtermio.a gcc -Wall -Wextra -std=c11 -O2 -fwrapv -o $@ $(filter %.c,$^) -Itermio termio/libtermio.a -termio: +termio/.git: git submodule update --init --recursive termio/libtermio.a: -- cgit v1.2.3-54-g00ecf