2005-01-10 Rodney Dawes <dobey@novell.com> * Makefile.am (INCLUDES): Clean up spacing (liborg_gnome_send_options_la_LIBADD): Don't specify the path to the la file directly, use the _LIBS variables that correspond with those in INCLUDES to link to the correct libraries svn path=/trunk/; revision=28339
19 lines
522 B
Makefile
19 lines
522 B
Makefile
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/camel \
|
|
$(EVOLUTION_MAIL_CFLAGS) \
|
|
$(CAMEL_GROUPWISE_CFLAGS)
|
|
|
|
@EVO_PLUGIN_RULE@
|
|
|
|
plugin_DATA = org-gnome-send-options.eplug
|
|
plugin_LTLIBRARIES = liborg-gnome-send-options.la
|
|
|
|
liborg_gnome_send_options_la_SOURCES = send-options.c
|
|
liborg_gnome_send_options_la_LDFLAGS = -module -avoid-version
|
|
liborg_gnome_send_options_la_LIBADD = \
|
|
$(EVOLUTION_MAIL_LIBS) \
|
|
$(CAMEL_GROUPWISE_LIBS)
|
|
|
|
EXTRA_DIST = org-gnome-send-options.eplug.in
|