diff options
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) |