[Glade-users] Glade Makefile (.a files)
Damon Chaplin
damon@helixcode.com
Wed, 13 Dec 2000 14:23:54 +0000
Matt Hillebrand wrote:
>
> Sorry, I just joined the group last night :)
>
> So, I looked at the FAQ, which is quite limited, and I still have the same
> question:
>
> How do I specify my own library archives (.a files) in my Glade
> App. Makefile? Thanks,
In the relevant Makefile.am (usually src/Makefile.am) you add the .a file
to the XXX_LDADD variable (where XXX is your program name).
Glade does this:
glade_LDADD = \
gbwidgets/libgbwidgets.a \
$(GLADE_GNOME_LIB) \
$(GLADE_GNOME_DB_LIB) \
$(INTLLIBS)
Damon