diff options
Diffstat (limited to '')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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" |
