Browse Source

Add build-no-git make command

Ben S 10 years ago
parent
commit
8ce694982c
1 changed files with 5 additions and 1 deletions
  1. 5 1
      Makefile

+ 5 - 1
Makefile

@@ -3,11 +3,15 @@ PREFIX ?= /usr/local
 BUILD = target/release/exa
 BUILD = target/release/exa
 
 
 $(BUILD):
 $(BUILD):
-	@which rustc > /dev/null || { echo "Exa requires Rust-lang to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; }
+	@which rustc > /dev/null || { echo "exa requires Rust Nightly to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; }
 	cargo build --release
 	cargo build --release
 
 
 build: $(BUILD)
 build: $(BUILD)
 
 
+build-no-git:
+	@which rustc > /dev/null || { echo "exa requires Rust Nightly to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; }
+	cargo build --release --no-default-features
+
 INSTALL = $(PREFIX)/bin/exa
 INSTALL = $(PREFIX)/bin/exa
 
 
 $(INSTALL):
 $(INSTALL):