mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-07 20:50:56 +00:00
well with those for the CVS version... the I1 accesses are noticeably higher, but everything else is nearly the same. There's some ugliness in spots, partly due to shortcomings with Vex. And CPUID auto-detection is currently disabled, because cpuid is disabled in general. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3389
59 lines
1.3 KiB
Makefile
59 lines
1.3 KiB
Makefile
|
|
AUTOMAKE_OPTIONS = foreign 1.6 dist-bzip2
|
|
|
|
include $(top_srcdir)/Makefile.all.am
|
|
|
|
## include must be first for tool.h
|
|
## addrcheck must come after memcheck, for mac_*.o
|
|
TOOLS = memcheck \
|
|
addrcheck \
|
|
cachegrind \
|
|
corecheck \
|
|
massif \
|
|
lackey \
|
|
none
|
|
|
|
SUBDIRS = include coregrind . docs tests auxprogs $(TOOLS)
|
|
DIST_SUBDIRS = $(SUBDIRS) helgrind
|
|
|
|
SUPP_FILES = \
|
|
glibc-2.1.supp glibc-2.2.supp glibc-2.3.supp \
|
|
xfree-3.supp xfree-4.supp
|
|
|
|
dist_val_DATA = $(SUPP_FILES) default.supp
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = valgrind.pc
|
|
|
|
BUILT_SOURCES = default.supp valgrind.pc
|
|
|
|
DISTCLEANFILES = default.supp
|
|
|
|
default.supp: $(SUPP_FILES)
|
|
|
|
## Preprend @PERL@ because tests/vg_regtest isn't executable
|
|
regtest: check
|
|
@PERL@ tests/vg_regtest $(TOOLS)
|
|
|
|
EXTRA_DIST = \
|
|
FAQ.txt \
|
|
ACKNOWLEDGEMENTS \
|
|
README_DEVELOPERS \
|
|
README_PACKAGERS \
|
|
README_MISSING_SYSCALL_OR_IOCTL TODO \
|
|
valgrind.spec valgrind.spec.in valgrind.pc.in \
|
|
Makefile.all.am Makefile.tool.am Makefile.core-AM_CPPFLAGS.am \
|
|
Makefile.tool-inplace.am
|
|
|
|
install-exec-hook:
|
|
$(mkinstalldirs) $(DESTDIR)$(valdir)
|
|
|
|
all-local:
|
|
mkdir -p $(inplacedir)
|
|
rm -f $(addprefix $(inplacedir)/,default.supp $(SUPP_FILES))
|
|
ln -s ../default.supp $(inplacedir)
|
|
ln -s $(addprefix ../$(top_srcdir)/,$(SUPP_FILES)) $(inplacedir)
|
|
|
|
distclean-local:
|
|
rm -rf $(inplacedir)
|