File: Makefile.am

package info (click to toggle)
evolution 2.6.3-6etch2
  • links: PTS
  • area: main
  • in suites: etch
  • size: 79,516 kB
  • ctags: 32,159
  • sloc: ansic: 295,007; xml: 10,755; sh: 9,373; makefile: 3,756; perl: 1,591
file content (48 lines) | stat: -rw-r--r-- 1,084 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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)