mirror of
https://github.com/pgpointcloud/pointcloud.git
synced 2025-12-08 20:36:04 +00:00
13 lines
166 B
Bash
Executable File
13 lines
166 B
Bash
Executable File
#!/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
|