Deleted Added
sdiff udiff text old ( 183876 ) new ( 188895 )
full compact
1# $FreeBSD: head/lib/libstand/Makefile 183876 2008-10-14 09:53:47Z raj $
2# Originally from $NetBSD: Makefile,v 1.21 1997/10/26 22:08:38 lukem Exp $
3#
4# Notes:
5# - We don't use the libc strerror/sys_errlist because the string table is
6# quite large.
7#
8
9LIB= stand
10NO_PROFILE=
11NO_PIC=
12INCS= stand.h
13MAN= libstand.3
14
15WITHOUT_SSP=
16CFLAGS+= -ffreestanding -Wformat
17CFLAGS+= -I${.CURDIR}
18
19.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
20CFLAGS+= -mpreferred-stack-boundary=2
21CFLAGS+= -mno-mmx -mno-3dnow -mno-sse -mno-sse2
22.endif
23.if ${MACHINE_ARCH} == "i386"

--- 139 unchanged lines hidden ---