989e2c6000
This is currently an opt-in build flag. Once ASLR support is ready and stable it should changed to opt-out and be enabled by default along with ASLR. Each application Makefile uses opt-out to ensure that ASLR will be enabled by default in new directories when the system is compiled with PIE/ASLR. [2] Mark known build failures as NO_PIE for now. The only known runtime failure was rtld. [1] http://www.bsdcan.org/2014/schedule/events/452.en.html Submitted by: Shawn Webb <lattera@gmail.com> Discussed between: des@ and Shawn Webb [2]
22 lines
347 B
Makefile
22 lines
347 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../common_source
|
|
|
|
PROG= lpc
|
|
MAN= lpc.8
|
|
SRCS= lpc.c cmds.c cmdtab.c movejobs.c
|
|
BINGRP= daemon
|
|
BINMODE= 2555
|
|
|
|
CFLAGS+= -I${.CURDIR}/../common_source
|
|
|
|
WARNS?= 0
|
|
|
|
DPADD= ${LIBLPR} ${LIBEDIT} ${LIBTERMCAP}
|
|
LDADD= ${LIBLPR} -ledit -ltermcap
|
|
|
|
NO_PIE= yes
|
|
|
|
.include <bsd.prog.mk>
|