Skip to content
Browse files

Added a batchfile for easier windows builds

Altered README.md to reflect this.
  • Loading branch information...
1 parent 2f6d6b7 commit f140a87838e18c47ce1784762acdaa9c7d4f240a @NobbZ NobbZ committed
Showing with 9 additions and 2 deletions.
  1. +2 −2 README.md
  2. +7 −0 make.bat
View
4 README.md
@@ -120,7 +120,7 @@ make virtualbox
- The direct link to the 32-bit nightly is https://static.rust-lang.org/dist/rust-nightly-i686-pc-windows-gnu.msi
- Open the Rust nightly shell in the redox repository
```bash
-windows\make all
+make all
```
## Running on Windows
@@ -128,5 +128,5 @@ windows\make all
- Make sure to install to C:\Program Files\Oracle\VirtualBox or edit the Makefile VBM path
- Run VirtualBox
```bash
-windows\make virtualbox
+make virtualbox
```
View
7 make.bat
@@ -0,0 +1,7 @@
+@echo off
+
+if "%~1"=="" (
+ windows\make.exe
+) else (
+ windows\make.exe %*
+)

0 comments on commit f140a87

Please sign in to comment.
Something went wrong with that request. Please try again.