Makefile (b9d698a0) | Makefile (5a5a41c0) |
---|---|
1# $OpenBSD: Makefile,v 1.20 2015/10/22 18:54:41 miod Exp $ | 1# $OpenBSD: Makefile,v 1.21 2016/07/30 03:25:48 guenther Exp $ |
2# $NetBSD: Makefile,v 1.17 1997/04/17 07:27:46 thorpej Exp $ 3 4S= ${.CURDIR}/../../../.. 5 6.PATH: ${.CURDIR}/.. 7 8PROG = boot 9 --- 45 unchanged lines hidden (view full) --- 55SAREL= 56SA_ZLIB= yes 57.include "${.CURDIR}/../libsa/Makefile.inc" 58LIBSA= ${SALIB} 59 60${PROG}.sym: ${OBJS} ${LIBSA} ${LIBZ} 61 sh ${.CURDIR}/newvers.sh ${.CURDIR}/version 62 ${COMPILE.c} vers.c | 2# $NetBSD: Makefile,v 1.17 1997/04/17 07:27:46 thorpej Exp $ 3 4S= ${.CURDIR}/../../../.. 5 6.PATH: ${.CURDIR}/.. 7 8PROG = boot 9 --- 45 unchanged lines hidden (view full) --- 55SAREL= 56SA_ZLIB= yes 57.include "${.CURDIR}/../libsa/Makefile.inc" 58LIBSA= ${SALIB} 59 60${PROG}.sym: ${OBJS} ${LIBSA} ${LIBZ} 61 sh ${.CURDIR}/newvers.sh ${.CURDIR}/version 62 ${COMPILE.c} vers.c |
63 ${LD} -nopie -Ttext ${BOOT_RELOC} -N -e start -o ${PROG}.sym \ 64 ${OBJS} vers.o ${LIBSA} ${LIBZ} ${LIBSA} | 63 ${LD} -nopie -znorelro -Ttext ${BOOT_RELOC} -N -e start \ 64 -o ${PROG}.sym ${OBJS} vers.o ${LIBSA} ${LIBZ} ${LIBSA} |
65 size ${PROG}.sym | 65 size ${PROG}.sym |