-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.am
49 lines (39 loc) · 1.05 KB
/
Makefile.am
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
49
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS="-Im4"
# setting this to empty so subdir makefiles can use +=
noinst_HEADERS =
noinst_LTLIBRARIES =
noinst_PROGRAMS =
bin_PROGRAMS =
check_PROGRAMS =
TESTS =
TESTS_ENVIRONMENT=
EXTRA_DIST = prepare.sh
AM_CPPFLAGS = -I$(top_srcdir)/include
AM_CFLAGS =
SERVER_LIBS = @SERVER_LIBS@
CLIENT_LIBS = @CLIENT_LIBS@
SERVER_CPPFLAGS = @SERVER_CPPFLAGS@
CLIENT_CPPFLAGS = @CLIENT_CPPFLAGS@
SERVER_CFLAGS = @SERVER_CFLAGS@
CLIENT_CFLAGS = @CLIENT_CFLAGS@
lib_LTLIBRARIES = \
lib/libmobject-client.la \
lib/libmobject-server.la \
lib/libmobject-comparators.la
if BUILD_BEDROCK
lib_LTLIBRARIES += lib/libmobject-bedrock.la
endif
bin_PROGRAMS += \
bin/mobject-server-ctl
include_HEADERS = \
include/libmobject-store.h \
include/librados-mobject-store.h \
include/mobject-client.h \
include/mobject-server.h
include Make.rules
include $(top_srcdir)/src/Makefile.subdir
include $(top_srcdir)/tests/Makefile.subdir
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = maint/mobject-server.pc \
maint/mobject-store.pc