Skip to content

Commit a2dcaa2

Browse files
committed
Makefile: use “$(RM)” for the rm call in clean.
1 parent 098888e commit a2dcaa2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# Makefile for reflac
2-
31
# This can be changed to "asciidoctor -b manpage" if necessary.
42
ASCIIDOC?=a2x -f manpage
53

@@ -17,7 +15,7 @@ reflac.1: reflac.adoc
1715
$(ASCIIDOC) reflac.adoc
1816

1917
clean:
20-
rm -f reflac.1
18+
$(RM) reflac.1
2119

2220
install: reflac.1
2321
install -Dm 755 reflac "$(target)/bin/reflac"

0 commit comments

Comments
 (0)