1AC_INIT([Google C++ Mocking and Testing Frameworks],
2        [1.8.0],
3        [googlemock@googlegroups.com],
4        [googletest])
5
6# Provide various options to initialize the Autoconf and configure processes.
7AC_PREREQ([2.59])
8AC_CONFIG_SRCDIR([./README.md])
9AC_CONFIG_AUX_DIR([build-aux])
10AC_CONFIG_FILES([Makefile])
11AC_CONFIG_SUBDIRS([googletest googlemock])
12
13AM_INIT_AUTOMAKE
14
15# Output the generated files. No further autoconf macros may be used.
16AC_OUTPUT
17