| | 200 | Go back to the previous folder: |
| | 201 | {{{ |
| | 202 | $ cd .. |
| | 203 | }}} |
| | 204 | |
| | 205 | Create another file called '''Makefile.am''' and insert the following text: |
| | 206 | {{{ |
| | 207 | SUBDIRS = src |
| | 208 | }}} |
| | 209 | |
| | 210 | Create a file called '''configure.ac''' and insert the following text: |
| | 211 | {{{ |
| | 212 | AC_INIT([myfirstgui],0.1) |
| | 213 | AM_INIT_AUTOMAKE |
| | 214 | AC_CONFIG_SRCDIR([src/myfirstgui.vala]) |
| | 215 | |
| | 216 | AC_PROG_CC |
| | 217 | m4_pattern_allow |
| | 218 | AM_PROG_VALAC |
| | 219 | |
| | 220 | PKG_CHECK_MODULES([DEPS], [glib-2.0 gio-2.0 elementary]) |
| | 221 | |
| | 222 | AC_CHECK_LIB(libeflvala) |
| | 223 | |
| | 224 | AC_OUTPUT([Makefile src/Makefile]) |
| | 225 | }}} |
| | 226 | |
| | 227 | |