blob: 07b1c6de7f41751a1eabb09d75ff1d399a0a8b6b (
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
43
44
45
46
47
48
49
50
51
52
53
54
|
ACLOCAL_AMFLAGS = -I m4
MAKEFLAGS = --no-print-directory
AM_CPPFLAGS = \
$(SANDBOX_DEFINES) \
-I$(top_srcdir)
confdir = $(sysconfdir)
confddir = $(sysconfdir)/sandbox.d
bin_PROGRAMS =
check_PROGRAMS =
check_SCRIPTS =
dist_check_SCRIPTS =
dist_conf_DATA = etc/sandbox.conf
confd_DATA = etc/sandbox.d/00default
dist_pkgdata_DATA = data/sandbox.bashrc
lib_LTLIBRARIES =
noinst_LTLIBRARIES =
CLEANFILES =
DISTCLEANFILES =
EXTRA_DIST = \
headers.h \
localdecls.h \
ChangeLog.0 \
data/sandbox.desktop \
data/sandbox.svg \
etc/sandbox.d/00default.in \
scripts/gen_symbol_version_map.awk \
scripts/gen_symbol_header.awk \
scripts/gen_trace_header.awk
ChangeLog:
touch ChangeLog
dist-hook:
set -e ; \
if [ -d "$(top_srcdir)/.git" ] ; then \
git --git-dir="$(top_srcdir)/.git" log > $(distdir)/ChangeLog ; \
elif [ ! -e "$(distdir)/ChangeLog" ] ; then \
if [ -e "$(top_srcdir)/ChangeLog" ] ; then \
cp "$(top_srcdir)/ChangeLog" "$(distdir)/ChangeLog" ; \
else \
touch "$(distdir)/ChangeLog" ; \
fi ; \
fi
include libsandbox/local.mk
include libsbutil/local.mk
include src/local.mk
include tests/local.mk
DISTCLEANFILES += $(CLEANFILES)
|