README: update instructions for meson
The repository uses meson now but the README was still referencing
autotools scripts. Replace them with the standard meson incantation.
Fixes openbmc/phosphor-inventory-manager#9.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Idaed67bd60a6d4042d48f1ff3e391264598e2abf
diff --git a/README.md b/README.md
index 0c978bf..403ca35 100644
--- a/README.md
+++ b/README.md
@@ -251,15 +251,8 @@
After running pimgen.py, build PIM using the following steps:
```sh
-./bootstrap.sh
-./configure ${CONFIGURE_FLAGS}
-make
-```
-
-To clean the repository run:
-
-```sh
- ./bootstrap.sh clean
+meson setup builddir
+ninja -C builddir
```
[1]: