mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-11 05:55:48 +00:00
named foo.c. Now again using the right flags for building fpu_lazy_eflags.c, too. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4086
29 lines
1009 B
Makefile
29 lines
1009 B
Makefile
noinst_SCRIPTS = filter_stderr filter_pushfpopf filter_tronical
|
|
|
|
noinst_HEADERS = scalar.h
|
|
|
|
EXTRA_DIST = $(noinst_SCRIPTS) \
|
|
fpeflags.stderr.exp fpeflags.vgtest \
|
|
pushfpopf.stderr.exp pushfpopf.stdout.exp pushfpopf.vgtest \
|
|
scalar.stderr.exp scalar.stderr.exp2 scalar.vgtest \
|
|
scalar_fork.stderr.exp scalar_fork.vgtest \
|
|
scalar_exit_group.stderr.exp scalar_exit_group.stderr.exp2 \
|
|
scalar_exit_group.vgtest \
|
|
scalar_supp.stderr.exp scalar_supp.stderr.exp2 \
|
|
scalar_supp.vgtest scalar_supp.supp \
|
|
scalar_vfork.stderr.exp scalar_vfork.vgtest \
|
|
tronical.stderr.exp tronical.vgtest
|
|
|
|
check_PROGRAMS = \
|
|
scalar_exit_group scalar_fork scalar_supp scalar_vfork \
|
|
fpeflags pushfpopf scalar tronical
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g
|
|
AM_CXXFLAGS = $(AM_CFLAGS)
|
|
|
|
# must be built with these flags -- bug only occurred with them
|
|
fpeflags_CFLAGS = $(AM_CFLAGS) -march=i686
|
|
pushfpopf_SOURCES = pushfpopf_c.c pushfpopf_s.s
|
|
tronical_SOURCES = tronical.S
|