From 5c4ef44426e0f16534334c67da4f4a9f94a514fe Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Fri, 28 Oct 2022 12:59:12 +0200 Subject: [PATCH] Makefile is not available until after configure The `make` command fails when run *before* configure, this is confusing users which are not familiar with `automake`. ```bash make distclean make: *** No rule to make target `distclean'. Stop. make make: *** No targets specified and no makefile found. Stop. ``` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 365aef70..690c3b54 100644 --- a/README.md +++ b/README.md @@ -116,9 +116,9 @@ Then to install the C library: ``` git clone https://github.com/openvenues/libpostal cd libpostal -make distclean ./bootstrap.sh ./configure --datadir=[...some dir with a few GB of space...] +make distclean make -j4 sudo make install