added install and uninstall scripts to makefile

This commit is contained in:
Carson McManus 2016-08-23 19:55:06 -04:00
parent 6a6befa7d2
commit cf7e858b88

View file

@ -10,3 +10,13 @@ run:
clean: clean:
rm -r build/ rm -r build/
install:
cp build/steamguard /usr/local/bin/
cp build/Newtonsoft.Json.dll /usr/local/bin/
cp build/SteamAuth.dll /usr/local/bin/
uninstall:
rm -f /usr/local/bin/steamguard
rm -f /usr/local/bin/Newtonsoft.Json.dll
rm -f /usr/local/bin/SteamAuth.dll