mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
overhaul of the thread support. Many things are now probably broken, but at least with --tool=none, simple and not-so-simple threaded and non-thread programs work. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3265
13 lines
489 B
Makefile
13 lines
489 B
Makefile
## Need $(top_builddir)/include because tool.h is built from tool.h.base;
|
|
## otherwise it will not work if builddir != srcdir.
|
|
add_includes = -I$(top_builddir)/include -I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/include/$(VG_ARCH) \
|
|
-I$(top_srcdir)/include/$(VG_OS) \
|
|
-I$(top_srcdir)/include/$(VG_PLATFORM) \
|
|
-I@VEX_DIR@/pub
|
|
|
|
AM_CPPFLAGS = $(add_includes)
|
|
AM_CFLAGS = $(WERROR) -Wmissing-prototypes -Winline -Wall -Wshadow -O -g @ARCH_TOOL_AM_CFLAGS@
|
|
AM_CCASFLAGS = $(add_includes)
|
|
|