fe0d386cf3
As part of the code refactoring to support FORTIFY_SOURCE we want a new subdirectory "secure" to keep the files related to security. Move the stack protector functions to this new directory. No functional change. Differential Review: https://reviews.freebsd.org/D3333
13 lines
229 B
Makefile
13 lines
229 B
Makefile
# $FreeBSD$
|
|
#
|
|
# libc sources related to security
|
|
|
|
.PATH: ${LIBC_SRCTOP}/secure
|
|
|
|
# Sources common to both syscall interfaces:
|
|
SRCS+= \
|
|
stack_protector.c \
|
|
stack_protector_compat.c
|
|
|
|
SYM_MAPS+= ${LIBC_SRCTOP}/secure/Symbol.map
|