Files
ftmemsim-valgrind/auxprogs/Makefile.am
Julian Seward 412cd357f6 Add a program for checking behaviour of ppc floating point insns in
the presence of different rounding modes.  This should really be a ppc
regression test, but the output is so large (~30MB) that the
.stdout.exp file would be unviably large.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5611
2006-02-06 04:19:30 +00:00

26 lines
685 B
Makefile

include $(top_srcdir)/Makefile.all.am
include $(top_srcdir)/Makefile.core.am
bin_PROGRAMS = valgrind-listener
noinst_SCRIPTS = gen-mdg DotToScc.hs primes.c \
gsl16test gsl16-badfree.patch gsl16-wavelet.patch \
ppcfround.c
EXTRA_DIST = $(noinst_SCRIPTS)
#------------------------- listener -----------------------
# Build valgrind_listener for the primary target only.
#
valgrind_listener_SOURCES = valgrind-listener.c
valgrind_listener_CPPFLAGS = $(AM_CPPFLAGS_PRI)
valgrind_listener_CFLAGS = $(AM_CFLAGS_PRI)
valgrind_listener_CCASFLAGS = $(AM_CCASFLAGS_PRI)
valgrind_listener_LDFLAGS = $(AM_CFLAGS_PRI)
#
#----------------------------------------------------------