Austin Schuh | 889ac43 | 2018-10-29 22:57:02 -0700 | [diff] [blame] | 1 | AC_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. |
| 7 | AC_PREREQ([2.59]) |
| 8 | AC_CONFIG_SRCDIR([./README.md]) |
| 9 | AC_CONFIG_AUX_DIR([build-aux]) |
| 10 | AC_CONFIG_FILES([Makefile]) |
| 11 | AC_CONFIG_SUBDIRS([googletest googlemock]) |
| 12 | |
| 13 | AM_INIT_AUTOMAKE |
| 14 | |
| 15 | # Output the generated files. No further autoconf macros may be used. |
| 16 | AC_OUTPUT |