We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8f0578 commit 098888eCopy full SHA for 098888e
Makefile
@@ -16,9 +16,13 @@ man: reflac.1
16
reflac.1: reflac.adoc
17
$(ASCIIDOC) reflac.adoc
18
19
+clean:
20
+ rm -f reflac.1
21
+
22
install: reflac.1
23
install -Dm 755 reflac "$(target)/bin/reflac"
24
install -Dm 644 reflac.1 "$(target)$(mandir)/man1/reflac.1"
25
-clean:
- rm -f reflac.1
26
+uninstall:
27
+ $(RM) "$(target)/bin/reflac"
28
+ $(RM) "$(target)$(mandir)/man1/reflac.1"
NEWS.adoc
@@ -1,5 +1,9 @@
1
= reflac project news
2
3
+HEAD::
4
+ * `Makefile` now has an `uninstall` rule, for those that aren’t
5
+ using a package manager to install this.
6
7
2.0.1 (2021-08-16)::
8
* Solve a minor edge-case: reflac will now find and recompress
9
hidden files.
0 commit comments