mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
in it, much of it from 1.0.X days. Did it in such a way that if it doesn't get touched (and it undoubtedly won't) it won't really go out of date, eg. by removing temporary details like version numbers, dates, details of specific software incompatibilities. It's much better to be vague but correct, than precise but incorrect; having incorrect info in a file as important as the README is bad. Also removed the README_KDE3_FOLKS file because it's pretty redundant now. Also added some changes that had been made in the stable branch but not the HEAD. Did similar, but smaller changes to README_DEVELOPERS and README_PACKAGERS. Also updated the valgrind.spec.in file to use the new, post-1.0.X description in the README. Also fixed a minor omission in Addrcheck's docs. MERGE TO STABLE git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2089
53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
|
|
AUTOMAKE_OPTIONS = 1.6 dist-bzip2
|
|
|
|
## coregrind must come before memcheck, addrcheck, helgrind, for
|
|
## vg_replace_malloc.o.
|
|
## addrcheck must come after memcheck, for mac_*.o
|
|
SUBDIRS = coregrind . docs tests include auxprogs \
|
|
memcheck \
|
|
addrcheck \
|
|
cachegrind \
|
|
corecheck \
|
|
helgrind \
|
|
lackey \
|
|
none
|
|
|
|
AM_CPPFLAGS = -DVG_LIBDIR="\"$(libdir)"\"
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -O -fomit-frame-pointer \
|
|
@PREFERRED_STACK_BOUNDARY@ -g
|
|
|
|
valdir = $(libdir)/valgrind
|
|
|
|
SUPP_FILES = \
|
|
glibc-2.1.supp glibc-2.2.supp glibc-2.3.supp \
|
|
xfree-3.supp xfree-4.supp
|
|
|
|
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 --all
|
|
|
|
EXTRA_DIST = $(val_DATA) \
|
|
FAQ.txt \
|
|
PATCHES_APPLIED ACKNOWLEDGEMENTS \
|
|
README_PACKAGERS \
|
|
README_MISSING_SYSCALL_OR_IOCTL TODO \
|
|
valgrind.spec valgrind.spec.in valgrind.pc.in
|
|
|
|
install-exec-hook:
|
|
$(mkinstalldirs) $(DESTDIR)$(valdir)
|
|
rm -f $(DESTDIR)$(valdir)/libpthread.so.0
|
|
$(LN_S) libpthread.so $(DESTDIR)$(valdir)/libpthread.so.0
|
|
|