diff options
author | June McEnroe <june@causal.agency> | 2021-01-29 14:08:51 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-01-29 14:08:51 -0500 |
commit | af8e6c90d8c675b98aba646fd767d55ad88cf252 (patch) | |
tree | 1ea43223ea68424adc8f4a92f7eb4d03b81d44a7 /Makefile | |
parent | Actually wait for a non-direction key (diff) | |
download | play-af8e6c90d8c675b98aba646fd767d55ad88cf252.tar.gz play-af8e6c90d8c675b98aba646fd767d55ad88cf252.zip |
Add menu to choose 2048 or snake
Diffstat (limited to '')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 8a48b53..932d30f 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,9 @@ LDLIBS = -lcurses -include config.mk -OBJS += play.o OBJS += 2048.o +OBJS += play.o +OBJS += snake.o all: tags play |