General cleanup

This commit is contained in:
Henrik Lissner 2016-06-06 19:42:00 -04:00
parent a2190b1553
commit af0a776fa5
10 changed files with 24 additions and 30 deletions

View file

@ -6,19 +6,19 @@ LLVM="clang+llvm-$(LLVMV)-x86_64-apple-darwin"
#
all: rust csharp
all: rust csharp js sh cc
rust:
@echo "Installing Rust dependencies"
git clone --depth 1 --recursive https://github.com/rust-lang/rust.git rust
git clone --depth 1 --recursive https://github.com/phildawes/racer.git racer-src
git clone --depth 1 --recursive "https://github.com/rust-lang/rust.git" rust
git clone --depth 1 --recursive "https://github.com/phildawes/racer.git" racer-src
cd racer-src && cargo build --release
mv racer-src/target/release/racer ./racer
rm -rf racer-src
csharp:
@echo "Installing C# dependencies"
git clone --depth 1 --recursive https://github.com/OmniSharp/omnisharp-server omnisharp
git clone --depth 1 --recursive "https://github.com/OmniSharp/omnisharp-server" omnisharp
cd omnisharp && xbuild
mv omnisharp/bin/Debug/OmniSharp.exe ./OmniSharp.exe
rm -rf omnisharp