aboutsummaryrefslogtreecommitdiff
blob: f1feca3089add621c3341fa006e12bdd98aeff7c (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 = \
	-I$(top_srcdir) \
	-I$(srcdir)/include \
	$(SANDBOX_DEFINES)

LOCAL_INCLUDES = $(top_srcdir)/localdecls.h

noinst_LTLIBRARIES = libsbutil.la

libsbutil_la_LDFLAGS = -no-undefined
libsbutil_la_SOURCES =                        \
	sbutil.h                              \
	get_sandbox_conf.c                    \
	get_sandbox_confd.c                   \
	get_sandbox_lib.c                     \
	get_sandbox_rc.c                      \
	get_sandbox_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                            \
	sb_printf.c                           \
	sb_memory.c                           \
	include/rcscripts/rcutil.h            \
	include/rcscripts/util/str_list.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)