2005-09-28 Tor Lillqvist <tml@novell.com> * text/Makefile.am: On Win32, use bootstrap import library for libemiscwidgets, which hasn't been built yet when we come here. Drop several overlapping CFLAGS. EXTRA_GNOME_CFLAGS should be enough. Install in privsolib instead of privlib (no difference on Unix). Use NO_UNDEFINED. Link with all needed libraries to satisfy the -no-undefined used on Windows. svn path=/trunk/; revision=30409
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
if OS_WIN32
|
|
WIN32_BOOTSTRAP_LIBS = $(top_builddir)/win32/libemiscwidgets.la
|
|
endif
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/widgets \
|
|
$(EXTRA_GNOME_CFLAGS) \
|
|
-DG_LOG_DOMAIN=\"e-text\"
|
|
|
|
|
|
privsolib_LTLIBRARIES = libetext.la
|
|
|
|
libetext_la_SOURCES = \
|
|
e-entry.c \
|
|
e-completion-match.c \
|
|
e-completion.c \
|
|
e-completion-callbacks.c \
|
|
e-completion-view.c \
|
|
e-table-text-model.c \
|
|
e-text-model-repos.c \
|
|
e-text-model.c \
|
|
e-text-model-uri.c \
|
|
e-text.c
|
|
|
|
libetextincludedir = $(privincludedir)/text
|
|
|
|
libetextinclude_HEADERS = \
|
|
e-entry.h \
|
|
e-completion-match.h \
|
|
e-completion.h \
|
|
e-completion-callbacks.h \
|
|
e-completion-view.h \
|
|
e-table-text-model.h \
|
|
e-text-model-repos.h \
|
|
e-text-model.h \
|
|
e-text-model-uri.h \
|
|
e-text.h
|
|
|
|
libetext_la_LDFLAGS = $(NO_UNDEFINED)
|
|
|
|
libetext_la_LIBADD = \
|
|
$(WIN32_BOOTSTRAP_LIBS) \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(top_builddir)/a11y/libevolution-a11y.la \
|
|
$(top_builddir)/widgets/table/libetable.la \
|
|
$(EXTRA_GNOME_LIBS) \
|
|
$(REGEX_LIBS)
|