mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-11 22:08:14 +00:00
signal frames. This commit looks worse than it is -- really just a load of moving-code-around. This is the first multiple-implementation module, in that it has a single interface (pub_core_sigframe.h) but multiple implementations, depending on the os-cpu pair. All the grotty details are hidden in the implementation in m_sigframe/; callers need be aware only of the interface. Yay. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3556
19 lines
388 B
Makefile
19 lines
388 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_SIGFRAME.txt
|
|
|
|
noinst_LIBRARIES = libsigframe.a
|
|
|
|
libsigframe_a_SOURCES = \
|
|
sigframe-@VG_PLATFORM@.c
|
|
|
|
if USE_PIE
|
|
libsigframe_a_CFLAGS = $(AM_CFLAGS) -fpie
|
|
else
|
|
libsigframe_a_CFLAGS = $(AM_CFLAGS)
|
|
endif
|