automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Makefiles and libraries problem


From: Matí­as Alejandro Torres
Subject: Re: Makefiles and libraries problem
Date: Thu, 12 Apr 2007 08:15:51 -0300
User-agent: Thunderbird 1.5.0.10 (X11/20070306)

Ralf Wildenhues escribió:
* Matí­as Alejandro Torres wrote on Thu, Apr 12, 2007 at 01:40:30AM CEST:
******************************
The Makefile.am in the database/ directory (a library)
******************************

contactsdb_la_SOURCES = idatabase.c\

Make that
  libcontactsdb_la_SOURCES = ...

   idatabase.h\
   sqlitedatabase.c\
   sqlitedatabase.h

lib_LTLIBRARIES = libcontactsdb.la


******************************
The Makefile.am in the gtk/ directory (a library)
******************************
contactsgui_la_SOURCES = aboutdialog.c \

Likewise, make that
  libcontactsgui_la_SOURCES = ...

   aboutdialog.h \
[...]
   toolbar.h

lib_LTLIBRARIES = libcontactsgui.la

After those changes, go to the toplevel source directory, run
  libtoolize -c   # Your users won't need to run this line
  autoreconf -vi  # Your users won't need to run this line
  ./configure
  make

Hope that helps.  If anything still doesn't work, please post the
complete output of the failing command.

Cheers,
Ralf

Thanks! It works now.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]