Deleted Added
full compact
Makefile (178664) Makefile (180012)
1# $FreeBSD: head/lib/libstand/Makefile 178664 2008-04-29 17:42:42Z ru $
1# $FreeBSD: head/lib/libstand/Makefile 180012 2008-06-25 21:33:28Z ru $
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
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=
15CFLAGS+= -ffreestanding -Wformat
16CFLAGS+= -I${.CURDIR}
17
18.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
19CFLAGS+= -mpreferred-stack-boundary=2
20CFLAGS+= -mno-mmx -mno-3dnow -mno-sse -mno-sse2
21.endif
22.if ${MACHINE_ARCH} == "i386"

--- 131 unchanged lines hidden ---
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"

--- 131 unchanged lines hidden ---