mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-13 14:42:03 +00:00
- Created Makefile.tool-tests.am, put standard AM_CFLAGS et al for tests in it. - A number of tests are shared between Helgrind and DRD. They used to be built in both directories. Now they are only built in helgrind/tests/, and the DRD .vgtest files just point to the executable in helgrind/tests/. Most of these (about 30) had the source files in helgrind/tests/; I moved the three that were in drd/tests/ into helgrind/tests/ for consistency. - Fixed rwlock_test, which was failing to run due to a wrong name in the .vgtest file. - Removed remnants of unused 'hello' test for Memcheck. - Avoided redundant flag specification in various places, esp. memcheck/tests/Makefile.am. - Removed unnecessary _AIX guards in some Linux-only tests. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@9202
30 lines
655 B
Makefile
30 lines
655 B
Makefile
|
|
# For AM_FLAG_M3264_PRI
|
|
include $(top_srcdir)/Makefile.flags.am
|
|
|
|
noinst_SCRIPTS = vg_perf
|
|
|
|
EXTRA_DIST = $(noinst_SCRIPTS) \
|
|
bigcode1.vgperf \
|
|
bigcode2.vgperf \
|
|
bz2.vgperf \
|
|
fbench.vgperf \
|
|
ffbench.vgperf \
|
|
heap.vgperf \
|
|
sarp.vgperf \
|
|
tinycc.vgperf \
|
|
test_input_for_tinycc.c
|
|
|
|
check_PROGRAMS = \
|
|
bigcode bz2 fbench ffbench heap sarp tinycc
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/include -I$(top_builddir)/include
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g -O $(AM_FLAG_M3264_PRI)
|
|
AM_CXXFLAGS = $(AM_CFLAGS)
|
|
|
|
# Extra stuff
|
|
fbench_CFLAGS = $(AM_FLAG_M3264_PRI) -g -O2
|
|
ffbench_LDADD = -lm
|
|
|
|
tinycc_CFLAGS = $(AM_CFLAGS) -Wno-shadow
|