mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
program more uniformly measures the speed of FP +/-/* load/store across different architectures. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5455
27 lines
538 B
Makefile
27 lines
538 B
Makefile
|
|
noinst_SCRIPTS = vg_perf
|
|
|
|
noinst_HEADERS = stdarg.h stddef.h
|
|
|
|
EXTRA_DIST = $(noinst_SCRIPTS) \
|
|
bigcode.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_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g -O
|
|
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/include -I$(top_builddir)/include
|
|
AM_CXXFLAGS = $(AM_CFLAGS)
|
|
|
|
# Extra stuff
|
|
fbench_CFLAGS = -g -O2
|
|
fbench_LDADD =
|
|
ffbench_LDADD = -lm
|