blob: 327bdbaf0dbfd4ada9e49628b885fc0f6411d4e5 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# Makefile.am --- automake input file for systemtap
## process this file with automake to produce Makefile.in
AM_MAKEFLAGS = 'CXXFLAGS=$(CXXFLAGS)' 'LDFLAGS=$(LDFLAGS)'
AM_CPPFLAGS = -DPKGLIBDIR='"${libexecdir}/${PACKAGE}"' \
-DPKGDATADIR='"${datadir}/${PACKAGE}"'
bin_PROGRAMS = stap
stap_SOURCES = main.cxx \
parse.cxx staptree.cxx elaborate.cxx translate.cxx \
tapsets.cxx buildrun.cxx
stap_CXXFLAGS = -Werror $(AM_CXXFLAGS)
libexec_PROGRAMS = stpd
stpd_SOURCES = runtime/stpd/stpd.c runtime/stpd/librelay.c
stpd_LDADD = -lpthread
# automake doesn't get rpath right unless we do this
stpd_LDFLAGS = -Wl,-rpath '$(libdir)/systemtap'
AM_CXXFLAGS = -Wall
# Get extra libs as needed
LDADD =
EXTRA_DIST=testsuite runtime tapset $(wildcard $(srcdir)/*.h) systemtap.spec
dist-hook:
find $(distdir) -name CVS -o -name '*~' -o -name '.#*' | xargs rm -rf
find $(distdir) -name '*.o' -o -name '*.ko' -o -name '*.cmd' -o -name '*.mod.c' -o -name '.??*' | xargs rm -rf
install-data-local:
mkdir -p $(DESTDIR)$(pkgdatadir)/runtime/transport
cp -rp $(srcdir)/runtime/*.[ch] $(srcdir)/runtime/Doxyfile \
$(DESTDIR)$(pkgdatadir)/runtime
tar -f - -c --exclude=CVS --exclude='*~' --exclude='.#*' \
-C $(srcdir)/runtime probes \
| (cd $(DESTDIR)$(pkgdatadir)/runtime && tar xpf -)
tar -f - -c --exclude=CVS --exclude='*~' --exclude='.#*' \
-C $(srcdir)/runtime transport \
| (cd $(DESTDIR)$(pkgdatadir)/runtime && tar xpf -)
-mkdir $(DESTDIR)$(pkgdatadir)/tapset
(cd $(srcdir)/tapset ; find . -name '*.stp' | cpio -pdmv $(DESTDIR)$(pkgdatadir)/tapset)
p=$(srcdir)/testsuite/parse
s=$(srcdir)/testsuite/sem
t=$(srcdir)/testsuite/trans
b=$(srcdir)/testsuite/build
TESTS = $(wildcard $(p)ok/*.stp) $(wildcard $(p)ko/*.stp) \
$(wildcard $(s)ok/*.stp) $(wildcard $(s)ko/*.stp) \
$(wildcard $(t)ok/*.stp) $(wildcard $(t)ko/*.stp) \
$(wildcard $(b)ok/*.stp) $(wildcard $(b)ko/*.stp)
XFAIL_TESTS = $(wildcard $(p)ko/*.stp) \
$(wildcard $(s)ko/*.stp) \
$(wildcard $(t)ko/*.stp) \
$(wildcard $(b)ko/*.stp)
TESTS_ENVIRONMENT = $(srcdir)/runtest.sh
gcov:
@$(MAKE) clean CXXFLAGS="-g -fprofile-arcs -ftest-coverage" all check
@gcov *.gcno >/dev/null 2>&1
@rm -f *.gcno *.gcda
@rm -f `ls -1 *.gcov | fgrep -v .cxx.gcov`
ls -l *.cxx.gcov
docs: runtime/Doxyfile
cd runtime && doxygen Doxyfile
rpm: dist docs
rpmbuild -ta ${PACKAGE_TARNAME}-${PACKAGE_VERSION}.tar.gz
clean-local:
rm -f *.gcov *.gcno *.gcda ${PACKAGE_TARNAME}-*.tar.gz
rm -rf ${PACKAGE_TARNAME}-${PACKAGE_VERSION}
|