mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-11 22:08:14 +00:00
I tried using 'svn merge' to do the merge but it did a terrible job and there were bazillions of conflicts. So instead I just took the diff between the branch and trunk at r10155, applied the diff to the trunk, 'svn add'ed the added files (no files needed to be 'svn remove'd) and committed. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10156
47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
Makefile
|
|
include $(top_srcdir)/Makefile.tool-tests.am
|
|
|
|
noinst_SCRIPTS = filter_stderr
|
|
|
|
noinst_HEADERS =
|
|
|
|
INSN_TESTS = insn_basic insn_mmx insn_sse insn_sse2 insn_fpu
|
|
|
|
EXTRA_DIST = $(noinst_SCRIPTS) \
|
|
$(addsuffix .stderr.exp,$(INSN_TESTS)) \
|
|
$(addsuffix .stdout.exp,$(INSN_TESTS)) \
|
|
$(addsuffix .vgtest,$(INSN_TESTS)) \
|
|
bt_everything.stderr.exp bt_everything.stdout.exp \
|
|
bt_everything.vgtest \
|
|
bug132146.vgtest bug132146.stderr.exp bug132146.stdout.exp \
|
|
defcfaexpr.vgtest defcfaexpr.stderr.exp filter_defcfaexpr \
|
|
fxsave-amd64.vgtest fxsave-amd64.stdout.exp fxsave-amd64.stderr.exp \
|
|
int3-amd64.vgtest int3-amd64.stdout.exp int3-amd64.stderr.exp \
|
|
more_x87_fp.stderr.exp more_x87_fp.stdout.exp more_x87_fp.vgtest \
|
|
sse_memory.stderr.exp sse_memory.stdout.exp sse_memory.vgtest \
|
|
xor-undef-amd64.stderr.exp xor-undef-amd64.stdout.exp \
|
|
xor-undef-amd64.vgtest
|
|
|
|
check_PROGRAMS = bt_everything bug132146 fxsave-amd64 \
|
|
xor-undef-amd64
|
|
|
|
# DDD: not sure if these ones should work on Darwin or not... if not, should
|
|
# be moved into amd64-linux/.
|
|
if ! VGCONF_OS_IS_DARWIN
|
|
check_PROGRAMS += \
|
|
defcfaexpr \
|
|
int3-amd64 \
|
|
more_x87_fp \
|
|
sse_memory
|
|
endif
|
|
|
|
AM_CFLAGS += @FLAG_M64@
|
|
AM_CXXFLAGS += @FLAG_M64@
|
|
AM_CCASFLAGS += @FLAG_M64@
|
|
|
|
more_x87_fp_CFLAGS = $(AM_CFLAGS) -O -ffast-math -mfpmath=387 \
|
|
-mfancy-math-387
|
|
more_x87_fp_LDADD = -lm
|
|
|
|
defcfaexpr_SOURCES = defcfaexpr.S
|