mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 10:05:29 +00:00
17 lines
472 B
Makefile
17 lines
472 B
Makefile
|
|
include $(top_srcdir)/Makefile.all.am
|
|
|
|
SUBDIRS = . tests docs
|
|
|
|
## 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
|
|
|
|
AM_CPPFLAGS = $(add_includes)
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -O -fomit-frame-pointer \
|
|
@PREFERRED_STACK_BOUNDARY@ -g
|
|
AM_CCASFLAGS = $(add_includes)
|
|
|
|
include $(top_srcdir)/Makefile.tool-inplace.am
|
|
|