mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 10:05:29 +00:00
34 lines
543 B
Makefile
34 lines
543 B
Makefile
|
|
include $(top_srcdir)/Makefile.tool-tests.am
|
|
|
|
dist_noinst_SCRIPTS = \
|
|
filter_addresses \
|
|
filter_discards \
|
|
filter_libc \
|
|
filter_numbers \
|
|
filter_stderr_basic \
|
|
filter_sink \
|
|
platform_test \
|
|
vg_regtest
|
|
|
|
noinst_HEADERS = \
|
|
asm.h \
|
|
malloc.h \
|
|
sys_mman.h
|
|
|
|
check_PROGRAMS = \
|
|
arch_test \
|
|
os_test \
|
|
true \
|
|
x86_amd64_features
|
|
|
|
AM_CFLAGS += $(AM_FLAG_M3264_PRI)
|
|
AM_CXXFLAGS += $(AM_FLAG_M3264_PRI)
|
|
|
|
if VGCONF_OS_IS_DARWIN
|
|
x86_amd64_features_CFLAGS = $(AM_CFLAGS) -mdynamic-no-pic
|
|
else
|
|
x86_amd64_features_CFLAGS = $(AM_CFLAGS)
|
|
endif
|
|
|