Changes between Version 77 and Version 78 of Developing your own applications
- Timestamp:
- 01/14/11 13:02:59 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Developing your own applications
v77 v78 50 50 rm -f *.c *.o *.stamp 51 51 }}} 52 52 53 Go back to the previous folder: 53 54 {{{ 54 55 $ cd .. 55 56 }}} 56 Create a file called '''Makefile.am''' and insert the following text: 57 58 Create another file called '''Makefile.am''' and insert the following text: 57 59 {{{ 58 60 SUBDIRS = src 59 61 }}} 62 60 63 Create a file called '''configure.ac''' and insert the following text: 61 64 {{{ … … 72 75 AC_OUTPUT([Makefile src/Makefile]) 73 76 }}} 77 74 78 Run the following commands: 75 79 {{{
