Changes between Version 75 and Version 76 of Developing your own applications
- Timestamp:
- 01/14/11 13:01:38 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Developing your own applications
v75 v76 33 33 34 34 === 3. Set up autotools === 35 Go back to the previous folder:36 {{{37 $ cd ..38 }}}39 35 Create a file called '''Makefile.am''' and insert the following text: 40 {{{41 SUBDIRS = src42 }}}43 Now go to the source folder once again:44 {{{45 $ cd src46 }}}47 Create another file called '''Makefile.am''' and insert the following text:48 36 {{{ 49 37 bin_PROGRAMS = myfirstapp … … 61 49 clean: 62 50 rm -f *.c *.o *.stamp 51 }}} 52 Go back to the previous folder: 53 {{{ 54 $ cd .. 55 }}} 56 Create a file called '''Makefile.am''' and insert the following text: 57 {{{ 58 SUBDIRS = src 63 59 }}} 64 60 Go back to the top level folder:
