mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-12 14:20:04 +00:00
contains what was previously vg_memory.c and also vg_procselfmaps.c, which is really just a helper for the address space manager. This just moves code around and modularises it a bit. It doesn't yet resolve the circular dependencies between ASpaceMgr and various other chunks of functionality (vg_malloc2, vg_symtab2). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3564
20 lines
403 B
Makefile
20 lines
403 B
Makefile
include $(top_srcdir)/Makefile.all.am
|
|
include $(top_srcdir)/Makefile.core-AM_CPPFLAGS.am
|
|
|
|
AM_CFLAGS = $(WERROR) -Wmissing-prototypes -Winline -Wall -Wshadow -O -g
|
|
|
|
EXTRA_DIST = \
|
|
README_ASPACEMGR.txt
|
|
|
|
noinst_LIBRARIES = libaspacemgr.a
|
|
|
|
libaspacemgr_a_SOURCES = \
|
|
read_procselfmaps.c \
|
|
aspacemgr.c
|
|
|
|
if USE_PIE
|
|
libaspacemgr_a_CFLAGS = $(AM_CFLAGS) -fpie
|
|
else
|
|
libaspacemgr_a_CFLAGS = $(AM_CFLAGS)
|
|
endif
|