diff --git a/Makefile b/Makefile
index 8c40da1..13d7d28 100644
--- a/Makefile
+++ b/Makefile
@@ -4,14 +4,13 @@ build:
cargo build --release
install: build
- sudo install -d <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline"><mrow><mo stretchy="false">(</mo><mi>D</mi><mi>E</mi><mi>S</mi><mi>T</mi><mi>D</mi><mi>I</mi><mi>R</mi><mo stretchy="false">)</mo></mrow></math>(PREFIX)/bin
sudo install -m755 target/release/walrs /usr/bin/walrs
sudo install -d ./templates/ /etc/walrs/templates
sudo cp -r templates/* /etc/walrs/templates/
uninstall:
- sudo rm -f <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline"><mrow><mo stretchy="false">(</mo><mi>D</mi><mi>E</mi><mi>S</mi><mi>T</mi><mi>D</mi><mi>I</mi><mi>R</mi><mo stretchy="false">)</mo></mrow></math>(PREFIX)/bin/walrs
- sudo rm -rf <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline"><mrow><mo stretchy="false">(</mo><mi>D</mi><mi>E</mi><mi>S</mi><mi>T</mi><mi>D</mi><mi>I</mi><mi>R</mi><mo stretchy="false">)</mo></mrow></math>(SYSCONFDIR)/walrs
+ sudo rm -f /usr/bin/walrs
+ sudo rm -rf /etc/walrs/
clean:
cargo clean