Re: how to create executables in .libs directory
"Conrad Parker" <[email protected]>
| Newsgroups | gmane.comp.multimedia.ogg.theora.devel |
|---|---|
| Message-ID | <[email protected]> |
On 28/01/2008, janaka priyadarshana <[email protected]> wrote: > hi all, > > > when make the libtheora-1.0beta2, it just create two new hidden directory in > example director named as .libs and .deps . I know that the executables are > created in the .libs directory. > > > Please can anyone tell me where it is specified that these executables are > create in the .libs directory..? If I want to add another executable (newly > added by me) in to this directory what files should i edit..? Hi Janaka, the .libs and .deps directories are made by the build system: .libs is made by libtool and .deps by makedep, which is invoked by gcc via automake. Any library you specify as lib_LTLIBRARIES in Makefile.am will be built in the .libs directory. cheers, Conrad.