Initial import.

Still needs documentation.
This commit is contained in:
Kyle Isom
2015-12-17 01:36:09 -08:00
commit e27a6fed94
34 changed files with 3592 additions and 0 deletions

6
autobuild Executable file
View File

@@ -0,0 +1,6 @@
#!/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