summary refs log tree commit diff
path: root/bin/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2017-09-14 16:28:11 -0400
committerJune McEnroe <june@causal.agency>2017-09-14 16:29:16 -0400
commitfedb2d758099a49a78ad25959a1f36e5a7220e52 (patch)
tree744e1bb7f821b961f80798c976bea5ed2da81ca3 /bin/Makefile
parentInclude sys/types.h in wake.c (diff)
downloadsrc-fedb2d758099a49a78ad25959a1f36e5a7220e52.tar.gz
src-fedb2d758099a49a78ad25959a1f36e5a7220e52.zip
Add typing game
Diffstat (limited to '')
-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)