aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 562ce45..89997db 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,8 @@ PREFIX ?= /usr/local
SRC != find src -type f
+all: later.pyz
+
install: later.pyz later.1
install -D -m 755 later.pyz '${DESTDIR}${PREFIX}/bin/later'
install -D -m 644 -t '${DESTDIR}${PREFIX}/share/man/man1' later.1
@@ -15,4 +17,4 @@ clean:
test:
pytest -q
-.PHONY: install clean test
+.PHONY: all install clean test