aboutsummaryrefslogtreecommitdiff
blob: 7d890d0a7d7045a3feb327e3ff7681707ff6bab8 (plain)
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
AUTOMAKE_OPTIONS = foreign

AM_CPPFLAGS = \
	$(SANDBOX_DEFINES)       \
	-DPIC -fPIC -D_REENTRANT \
	-I$(top_srcdir) -Wall

INCLUDES = -I$(srcdir)/include
LOCAL_INCLUDES = $(top_srcdir)/localdecls.h

noinst_LTLIBRARIES = libsbutil.la

libsbutil_la_SOURCES =                        \
	sbutil.h                              \
	get_sandbox_lib.c                     \
	get_sandbox_rc.c                      \
	get_sandbox_log.c                     \
	get_sandbox_debug_log.c               \
	get_tmp_dir.c                         \
	is_env_on.c                           \
	is_env_off.c                          \
	sb_open.c                             \
	sb_read.c                             \
	sb_write.c                            \
	sb_close.c                            \
	include/rcscripts/rctypes.h           \
	include/rcscripts/rcutil.h            \
	include/rcscripts/util/list.h         \
	include/rcscripts/util/str_list.h     \
	include/rcscripts/util/simple-regex.h \
	include/rcscripts/util/debug.h        \
	src/debug.c                           \
	include/rcscripts/util/string.h       \
	src/string.c                          \
	include/rcscripts/util/file.h         \
	src/file.c                            \
	include/rcscripts/util/config.h       \
	src/config.c                          \
	include/rcscripts/util/dynbuf.h       \
	src/dynbuf.c                          \
	$(LOCAL_INCLUDES)