diff options
author | June McEnroe <june@causal.agency> | 2017-09-14 16:28:11 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2017-09-14 16:29:16 -0400 |
commit | fedb2d758099a49a78ad25959a1f36e5a7220e52 (patch) | |
tree | 744e1bb7f821b961f80798c976bea5ed2da81ca3 /bin/Makefile | |
parent | Include sys/types.h in wake.c (diff) | |
download | src-fedb2d758099a49a78ad25959a1f36e5a7220e52.tar.gz src-fedb2d758099a49a78ad25959a1f36e5a7220e52.zip |
Add typing game
Diffstat (limited to 'bin/Makefile')
-rw-r--r-- | bin/Makefile | 5 |
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) |