aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index eedff0a..1121ff9 100644
--- a/Makefile
+++ b/Makefile
@@ -3,26 +3,26 @@
CONFIGFILE = config.mk
include $(CONFIGFILE)
-all: rq
+all: read-quickly
-rq: rq.o
+read-quickly: read-quickly.o
$(CC) -o $@ $@.o $(LDFLAGS)
.c.o:
$(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS)
-install: rq
+install: read-quickly
mkdir -p -- "$(DESTDIR)$(PREFIX)/bin"
mkdir -p -- "$(DESTDIR)$(MANPREFIX)/man1"
- cp -- rq "$(DESTDIR)$(PREFIX)/bin/$(COMMAND)"
- cp -- rq.1 "$(DESTDIR)$(MANPREFIX)/man1/$(COMMAND).1"
+ cp -- read-quickly "$(DESTDIR)$(PREFIX)/bin/"
+ cp -- read-quickly.1 "$(DESTDIR)$(MANPREFIX)/man1/"
uninstall:
- -rm -f -- "$(DESTDIR)$(PREFIX)/$(COMMAND)"
- -rm -f -- "$(DESTDIR)$(MANPREFIX)/man1/$(COMMAND).1"
+ -rm -f -- "$(DESTDIR)$(PREFIX)/read-quickly"
+ -rm -f -- "$(DESTDIR)$(MANPREFIX)/man1/read-quickly.1"
clean:
- -rm -rf -- rq *.o
+ -rm -rf -- read-quickly *.o
.SUFFIXES:
.SUFFIXES: .o .c