Skip to content
Snippets Groups Projects
Commit 63c7f6c6 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Makefile: Don't use $(RM)

parent 4683eebc
No related branches found
No related tags found
No related merge requests found
......@@ -9,10 +9,10 @@ install: build/efa.1
install -m 644 -D build/efa.1 $(prefix)/share/man/man1/efa.1
uninstall:
$(RM) $(prefix)/bin/efa
$(RM) $(prefix)/share/man/man1/efa.1
rm -f $(prefix)/bin/efa
rm -f $(prefix)/share/man/man1/efa.1
clean:
$(RM) -r build
rm -rf build
.PHONY: install uninstall clean
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment