mirror of
https://github.com/pgpointcloud/pointcloud.git
synced 2026-01-25 16:25:49 +00:00
13 lines
164 B
Bash
13 lines
164 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ -f config.mk ]; then
|
|
make clean maintainer-clean
|
|
fi
|
|
|
|
./autogen.sh
|
|
./configure CFLAGS="-Wall -Werror -O2 -g" $@
|
|
make
|
|
sudo make install
|