From 4a2d6a9bcaa35df88b647eb74559157bc8ff8065 Mon Sep 17 00:00:00 2001
From: Curtis McEnroe <programble@gmail.com>
Date: Thu, 14 Sep 2017 16:28:11 -0400
Subject: Add typing game

---
 bin/Makefile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

(limited to 'bin/Makefile')

diff --git a/bin/Makefile b/bin/Makefile
index 9212d70e..564bfc74 100644
--- a/bin/Makefile
+++ b/bin/Makefile
@@ -1,4 +1,4 @@
-BINS = atch bri dtch hnel jrp pbcopy pbd pbpaste wake watch xx
+BINS = atch bri dtch hnel jrp pbcopy pbd pbpaste typo wake watch xx
 CWARNS = -Wall -Wextra -Wpedantic
 
 all: $(BINS)
@@ -24,6 +24,9 @@ pbcopy: pbd
 pbpaste: pbd
 	ln -f pbd pbpaste
 
+typo: typo.c
+	$(CC) $(CWARNS) $(CFLAGS) -lcurses -o typo typo.c
+
 clean:
 	rm -f $(BINS)
 
-- 
cgit 1.4.1