mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-13 22:46:59 +00:00
for the various core modules and use a single global setting so that the flags are actually consistent everywhere. Also get rid of most the USE_PIE blocks in the makefiles by having configure pass expand a variable in the new global AM_CFLAGS to one of "-fpie" or "" depending on whether PIE is in use. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3760
21 lines
427 B
Makefile
21 lines
427 B
Makefile
include $(top_srcdir)/Makefile.all.am
|
|
include $(top_srcdir)/Makefile.core-AM_CPPFLAGS.am
|
|
|
|
EXTRA_DIST = \
|
|
README_SYSCALLS.txt
|
|
|
|
noinst_HEADERS = \
|
|
priv_syscalls.h \
|
|
priv_syscalls-linux.h \
|
|
priv_syscalls-amd64-linux.h \
|
|
priv_syscalls-arm-linux.h \
|
|
priv_syscalls-x86-linux.h
|
|
|
|
noinst_LIBRARIES = libsyscalls.a
|
|
|
|
libsyscalls_a_SOURCES = \
|
|
syscall-@VG_PLATFORM@.S \
|
|
syscalls.c \
|
|
syscalls-@VG_OS@.c \
|
|
syscalls-@VG_PLATFORM@.c
|