Files
emsha/autobuild
Kyle Isom e27a6fed94 Initial import.
Still needs documentation.
2015-12-17 01:54:10 -08:00

7 lines
150 B
Bash
Executable File

#!/bin/sh
CXX=g++
command -v clang 2>&1 > /dev/null && CXX=clang++
[ -d m4 ] || mkdir m4
autoreconf -i && ./configure CXX=$CXX && make && make check