mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-10 13:40:25 +00:00
24 lines
704 B
Makefile
24 lines
704 B
Makefile
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)) \
|
|
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
|
|
|
|
check_PROGRAMS = more_x87_fp sse_memory
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g -I$(top_srcdir)/include
|
|
@FLAG_M64@
|
|
AM_CXXFLAGS = $(AM_CFLAGS)
|
|
|
|
more_x87_fp_CFLAGS = $(AM_CFLAGS) -O -ffast-math -mfpmath=387 \
|
|
-mfancy-math-387
|
|
more_x87_fp_LDADD = -lm
|