From 453d86d64d63785cf9cb0d3c36660a213d8897b9 Mon Sep 17 00:00:00 2001 From: LordMZTE Date: Fri, 26 Mar 2021 18:06:46 +0100 Subject: [PATCH] add makefile --- Makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..109e1dc --- /dev/null +++ b/Makefile @@ -0,0 +1,24 @@ +# this includes some scripts to set up the environment quickly + +RUST_PROGRAMS=\ + alacritty \ + cargo-edit \ + gitui \ + lsd \ + mask \ + miniserve \ + onefetch \ + rg \ + starship \ + tiny \ + tokei \ + zoxide + +.PHONY: install_rust_programs +.PHONY: install_rustup + +install_rustup: + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh + +install_rust_programs: + cargo install $(RUST_PROGRAMS)