mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-08 04:55:52 +00:00
Not sure if this is correct; Nick, can you verify? Thx. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1199
31 lines
433 B
Makefile
31 lines
433 B
Makefile
|
|
SUBDIRS = . unused
|
|
|
|
bin_SCRIPTS = \
|
|
vg_regtest
|
|
|
|
noinst_SCRIPTS = \
|
|
filter_addresses \
|
|
filter_discards \
|
|
filter_stderr_basic \
|
|
filter_test_paths
|
|
|
|
noinst_PROGRAMS = \
|
|
true
|
|
|
|
CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g
|
|
CXXFLAGS = $(CFLAGS)
|
|
|
|
# generic C ones
|
|
true_SOURCES = true.c
|
|
|
|
#EXTRA_DIST = \
|
|
# $(noinst_SCRIPTS) \
|
|
# blocked_syscall.c \
|
|
# clientperm.c \
|
|
# clientstackperm.c \
|
|
# discard.c
|
|
|
|
EXTRA_DIST = $(noinst_SCRIPTS)
|
|
|