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.
```
This commit is contained in:
Peter Johnson
2022-10-28 12:59:12 +02:00
committed by GitHub
parent 92f504c8c9
commit 5c4ef44426

View File

@@ -116,9 +116,9 @@ Then to install the C library:
``` ```
git clone https://github.com/openvenues/libpostal git clone https://github.com/openvenues/libpostal
cd libpostal cd libpostal
make distclean
./bootstrap.sh ./bootstrap.sh
./configure --datadir=[...some dir with a few GB of space...] ./configure --datadir=[...some dir with a few GB of space...]
make distclean
make -j4 make -j4
sudo make install sudo make install