blob: 3943cd7a8ceb021caa9a58fa25c658743f09a76d (
plain) (
blame)
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
|
## Process this file with automake to produce Makefile.in
SUBDIRS =
libcamelmboxincludedir = $(includedir)/camel
lib_LTLIBRARIES = libcamelmbox.la
INCLUDES = -I.. -I$(srcdir)/.. -I$(includedir) \
-I$(top_srcdir)/intl \
$(GTK_INCLUDEDIR) -I$(top_srcdir)/camel
libcamelmbox_la_SOURCES = \
camel-mbox-folder.c \
camel-mbox-store.c \
camel-mbox-parser.c
libcamelmboxinclude_HEADERS = \
camel-mbox-folder.h \
camel-mbox-store.h \
camel-mbox-parser.h
libcamelmbox_la_LDFLAGS = -version-info 0:0:0 -rpath $(libdir)
EXTRA_DIST =
|