summary refs log tree commit diff
path: root/bin/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2017-09-14 16:28:11 -0400
committerJune McEnroe <programble@gmail.com>2017-09-14 16:29:16 -0400
commit4a2d6a9bcaa35df88b647eb74559157bc8ff8065 (patch)
tree9b277d55d92f92abce8b2d8227d94a959a70fcc7 /bin/Makefile
parentInclude sys/types.h in wake.c (diff)
downloadsrc-4a2d6a9bcaa35df88b647eb74559157bc8ff8065.tar.gz
src-4a2d6a9bcaa35df88b647eb74559157bc8ff8065.zip
Add typing game
Diffstat (limited to 'bin/Makefile')
-rw-r--r--bin/Makefile5
1 files changed, 4 insertions, 1 deletions
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)