pointcloud/tools/build_install.sh
2022-02-08 09:33:14 +01:00

13 lines
166 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