diff options
author | tomsmeding <tom.smeding@gmail.com> | 2018-02-07 21:32:20 +0100 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2018-02-07 21:32:20 +0100 |
commit | 16a5cf9ba310729f8a76115b4f39315a7272d8f0 (patch) | |
tree | 1bb18ea1fbcb76f6a90e4baef7ece796538c0052 /Makefile | |
parent | 49722933a9a14eb7b708a56a690a2b199e878f44 (diff) |
Actually working HEAD^^
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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: |