11 lines
348 B
Plaintext
11 lines
348 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
dnl Don't forget to run `aclocal -I /usr/local/share/aclocal` before
|
|
dnl running autoconf! This is required for AM_PATH_CPPUNIT to work.
|
|
AC_INIT(Makefile.am)
|
|
AM_INIT_AUTOMAKE(cppunit-cookbook,1.6.2)
|
|
AM_PATH_CPPUNIT(1.6.2)
|
|
AC_PROG_CXX
|
|
AC_PROG_CC
|
|
AC_PROG_INSTALL
|
|
AC_OUTPUT(Makefile)
|