jmhodges (owner)

Revisions

gist: 151048 Download_button fork
public
Public Clone URL: git://gist.github.com/151048.git
Embed All Files: show embed
autogen.sh #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
 
run ()
{
    echo "running: $*"
    eval $*
 
    if test $? != 0 ; then
echo "error: while running '$*'"
exit 1
    fi
}
 
run aclocal
run automake
run autoconf
configure.ac #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
AC_INIT([libmurmurhash], [0.1], [jeff@somethingsimilar.com])
 
AC_CONFIG_SRCDIR(src/murmurhash.cc)
 
AM_INIT_AUTOMAKE
 
AC_PROG_CC
 
AC_PROG_CXX
 
AC_PROG_LIBTOOL
 
AC_PROG_INSTALL
 
AC_OUTPUT(Makefile)
Makefile.am #
1
2
3
lib_LTLIBRARIES = libmurmurhash.la
 
libmurmurhash_la_SOURCES = src/murmurhash.cc