From f113123d3035e2d6b7db5a053c1077d1799f2237 Mon Sep 17 00:00:00 2001 From: Kristina Date: Fri, 20 Jun 2014 10:45:44 -0400 Subject: [PATCH 1/3] Remove unnecessary workspace setup requirements --- README.txt => README.md | 14 -------------- 1 file changed, 14 deletions(-) rename README.txt => README.md (79%) diff --git a/README.txt b/README.md similarity index 79% rename from README.txt rename to README.md index 3c5afd2ce462f8..962cb8ca75cf49 100644 --- a/README.txt +++ b/README.md @@ -10,20 +10,6 @@ Then run: We are working on bootstrapping bazel with itself. - -* Workspace setup - -You will need to add some infrastructure to your workspace to run bazel: - -tools/genrule/genrule-setup.sh -tools/genrule/BUILD -tools/test/test-setup.sh -tools/test/BUILD -tools/BUILD -tools/defaults/BUILD - -We are still in the process of figuring out how to ship these files. - * Running Bazel Create a google3 directory. This is your package root where all of your builds From e2f4b2e781873ada137705a4613cfac838978ea9 Mon Sep 17 00:00:00 2001 From: Kristina Date: Fri, 20 Jun 2014 10:46:19 -0400 Subject: [PATCH 2/3] Fix headings --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 962cb8ca75cf49..a5ade04b04e184 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ -* Building Bazel +Building Bazel +============== We currently only support building on Ubuntu, and the binaries only run on Ubuntu. You will need packages for the protobuf-compiler, and for libarchive: @@ -10,7 +11,8 @@ Then run: We are working on bootstrapping bazel with itself. -* Running Bazel +Running Bazel +============= Create a google3 directory. This is your package root where all of your builds will happen (we're working on removing the google3 naming requirement). Add the From 1198515ec6d676c5f0ca53d772c0c73ed0662082 Mon Sep 17 00:00:00 2001 From: Kristina Date: Fri, 20 Jun 2014 10:46:53 -0400 Subject: [PATCH 3/3] Fix trailing ) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a5ade04b04e184..750bba62fcdb00 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ Create tools/genrule/BUILD and add the following to it: Create your own project with a BUILD file, for example: $ mkdir -p hello - $ echo 'genrule(name = "world", outs = ["hi"], cmd = "touch $(@D)/hi"' > hello/BUILD -) + $ echo 'genrule(name = "world", outs = ["hi"], cmd = "touch $(@D)/hi")' > hello/BUILD + Now run Bazel using --output_base and --install_base options, e.g.,