summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6a087e0..c291ef6 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,8 @@ BIN =\
dice\
dogwhistle\
stopwatch\
- timer
+ timer\
+ tuner
HDR =\
common.h\
@@ -94,6 +95,9 @@ stopwatch: stopwatch.o
timer: timer.o large-digits.o large-colon.o large-dot.o large-minus.o
$(CC) -o $@ $@.o large-digits.o large-colon.o large-dot.o large-minus.o $(LDFLAGS)
+tuner: tuner.o
+ $(CC) -o $@ $@.o $(LDFLAGS)
+
install-common:
mkdir -p -- "$(DESTDIR)$(MANPREFIX)/man1"
cp -- $(MAN1) "$(DESTDIR)$(MANPREFIX)/man1"