mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-10 21:47:06 +00:00
installed, as it was silly since the reg tests themselves aren't installed. Updated the "make regtest" target to use the uninstalled version in tests/. Also, vg_regtest now no longer uses the installed version of Valgrind to do the testing, but instead coregrind/valgrind. This means that you don't have to do make install with your buggy changes before running the regtests on them :) I even updated the RPM package .spec file! Thanks to Dirk M�ller for the suggestion. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1551
22 lines
312 B
Makefile
22 lines
312 B
Makefile
|
|
SUBDIRS = . unused
|
|
|
|
noinst_SCRIPTS = \
|
|
vg_regtest
|
|
filter_addresses \
|
|
filter_discards \
|
|
filter_stderr_basic \
|
|
filter_test_paths
|
|
|
|
check_PROGRAMS = \
|
|
true
|
|
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g
|
|
AM_CXXFLAGS = $(AM_CFLAGS)
|
|
|
|
# generic C ones
|
|
true_SOURCES = true.c
|
|
|
|
EXTRA_DIST = $(noinst_SCRIPTS)
|
|
|