mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
- changed deprecated INCLUDES variable to AM_CPPFLAGS - moved the -DVG_LIBDIR definition from AM_CFLAGS into AM_CPPFLAGS - generally neatened them up a bit -- removed old commented out stuff, fixed a couple of other minor things Everything works for me, hopefully it won't break things for anyone else... git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1680
23 lines
313 B
Makefile
23 lines
313 B
Makefile
|
|
SUBDIRS = . unused
|
|
|
|
noinst_SCRIPTS = \
|
|
vg_regtest
|
|
filter_addresses \
|
|
filter_discards \
|
|
filter_stderr_basic \
|
|
filter_test_paths
|
|
|
|
EXTRA_DIST = $(noinst_SCRIPTS)
|
|
|
|
check_PROGRAMS = \
|
|
true
|
|
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g
|
|
AM_CXXFLAGS = $(AM_CFLAGS)
|
|
|
|
# generic C ones
|
|
true_SOURCES = true.c
|
|
|
|
|