mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-07 04:38:00 +00:00
required moving a lot of stuff around. I deleted VG_(set_return_from_syscall_shadow)() and VG_(get_exit_status_shadow)(), which screwed up the modularity and weren't being used and can be simulated in other ways with a bit of care. What are the chances that I've added and moved all the files correctly in this commit, and not broken the amd64 port? git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3636
22 lines
405 B
Makefile
22 lines
405 B
Makefile
include $(top_srcdir)/Makefile.all.am
|
|
include $(top_srcdir)/Makefile.core-AM_CPPFLAGS.am
|
|
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -O -fomit-frame-pointer -g
|
|
|
|
noinst_HEADERS = \
|
|
core_platform.h \
|
|
vki_unistd.h
|
|
|
|
noinst_LIBRARIES = libplatform.a
|
|
|
|
|
|
libplatform_a_SOURCES = \
|
|
core_platform.c \
|
|
ldt.c
|
|
|
|
if USE_PIE
|
|
libplatform_a_CFLAGS = $(AM_CFLAGS) -fpie
|
|
else
|
|
libplatform_a_CFLAGS = $(AM_CFLAGS)
|
|
endif
|