Files
ftmemsim-valgrind/coregrind/m_aspacemgr/Makefile.am
Julian Seward 3f12fcbba8 Create a new module: ASpaceMgr, the address space manager. This
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
2005-04-25 11:11:44 +00:00

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