* Makefile.am (libeutil_la_LIBADD): make e-util depend on libunicode * e-popup-menu.c (make_item): Use GtkMenuItem rather than GtkPixmapMenuItem for items with no pixmaps, so that if the whole menu is pixmapless, you don't get a column of blank pixmaps. svn path=/trunk/; revision=5114
52 lines
1.0 KiB
Makefile
52 lines
1.0 KiB
Makefile
imagesdir = $(datadir)/images/evolution
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GNOME_INCLUDEDIR) \
|
|
$(UNICODE_CFLAGS) \
|
|
-DEVOLUTION_IMAGES=\""$(imagesdir)"\" \
|
|
-DG_LOG_DOMAIN=\"e-utils\" \
|
|
$(UNICODE_CFLAGS)
|
|
|
|
noinst_LTLIBRARIES = libeutil.la libeutil-static.la
|
|
|
|
libeutil_la_SOURCES = \
|
|
e-canvas.c \
|
|
e-canvas.h \
|
|
e-canvas-utils.c \
|
|
e-canvas-utils.h \
|
|
e-canvas-vbox.c \
|
|
e-canvas-vbox.h \
|
|
e-cursors.c \
|
|
e-cursors.h \
|
|
e-dialog-widgets.c \
|
|
e-dialog-widgets.h \
|
|
e-gui-utils.c \
|
|
e-gui-utils.h \
|
|
e-html-utils.c \
|
|
e-html-utils.h \
|
|
e-iterator.c \
|
|
e-iterator.h \
|
|
e-list.c \
|
|
e-list.h \
|
|
e-list-iterator.c \
|
|
e-list-iterator.h \
|
|
e-popup-menu.c \
|
|
e-popup-menu.h \
|
|
e-printable.c \
|
|
e-printable.h \
|
|
e-sexp.c \
|
|
e-sexp.h \
|
|
e-util.c \
|
|
e-util.h \
|
|
e-xml-utils.c \
|
|
e-xml-utils.h \
|
|
e-font.c \
|
|
e-font.h \
|
|
e-unicode.c \
|
|
e-unicode.h
|
|
|
|
libeutil_la_LIBADD = $(UNICODE_LIBS)
|
|
|
|
libeutil_static_la_SOURCES = $(libeutil_la_SOURCES)
|
|
libeutil_static_la_LDFLAGS = --all-static
|