blob: a4f9f7a7bfbe38291f8befd1e5c65c8549e8b71e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Makefile.am --- automake input file for systemtap
## process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = dejagnu
# The stap symlink is to enable "#! stap" test scripts.
all-local:
@ln -sf ../stap .
clean-local:
@rm -f ./stap site.exp systemtap.sum systemtap.log
@rm -rf .systemtap .cache_test
check-local:
installcheck-local: clean site.exp
echo "set prefix $(DESTDIR)$(prefix)" >> site.exp
$(MAKE) AM_RUNTESTFLAGS="--tool_opts install" check
|