* susan xie wrote on Tue, Nov 13, 2007 at 03:40:43PM CET: > > My makefile.am is as follows. All these libraries will be created > during the 'make'.
Your makefile.am looks fine to me. If anything still fails with it, please report back. [...] > main_LDADD = $(top_builddir)/FMDB/FMDB/libFMDB.la \ > $(top_builddir)/SCORECUtil/SCORECUtil/libSCORECUtil.la \ > $(top_builddir)/SCORECModel/SCORECModel/libSCORECModel.la > main_DEPENDENCIES = $(top_builddir)/FMDB/FMDB/libFMDB.la \ > $(top_builddir)/SCORECUtil/SCORECUtil/libSCORECUtil.la \ > $(top_builddir)/SCORECModel/SCORECModel/libSCORECModel.la Just a small nit: you can drop the main_DEPENDENCIES line, because automake is smart enough to compute it by itself from the main_LDADD line. Cheers, Ralf
