Index: README.md |
diff --git a/README.md b/README.md |
index 62587a7f8c29b9a48693e14a86f8169f79b4af80..25c6ad779068e2d2735bb8256812d956bcc1c2a2 100644 |
--- a/README.md |
+++ b/README.md |
@@ -35,11 +35,9 @@ If the fetch command fails, you will need to delete the src directory and start |
Build Mojo by running: |
``` |
-$ ninja -C out/Debug -j 10 root |
+$ ninja -C out/Debug -j 10 |
``` |
-The "root" parameter specifies the target to build, it's not a special keyword. You can find the "root" target in src/BUILD.gn. |
- |
(If you are a Googler, see the section at the end of this document for faster builds.) |
You can also use the mojob.py script for building. This script automatically calls ninja and sets -j to an appropriate value based on whether Goma is present. You cannot specify a target name with this script. |
@@ -150,5 +148,5 @@ After you close the editor, the "gn args" command will automatically run "gn gen |
Now you can dramatically increase the number of parallel tasks: |
``` |
-$ ninja -C out/Debug -j 1000 root |
+$ ninja -C out/Debug -j 1000 |
``` |