This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
## Helloworld C++: an example project using Automake |
| 2 |
|
| 3 |
AC_INIT([Helloworld C++], [0.5], [murrayc@openismus.com], |
| 4 |
[helloworld_cc], [http://www.openismus.com/documents/linux/automake/automake]) |
| 5 |
AC_PREREQ([2.64]) |
| 6 |
AM_INIT_AUTOMAKE([1.11 -Wall no-define subdirs-objects]) |
| 7 |
|
| 8 |
AC_CONFIG_HEADERS([config.h]) |
| 9 |
AC_PROG_CXX |
| 10 |
AC_CONFIG_FILES([Makefile]) |
| 11 |
AC_OUTPUT |