Deleted Added
full compact
Makefile (217028) Makefile (220361)
1# $FreeBSD: head/sys/boot/pc98/boot2/Makefile 217028 2011-01-05 21:46:08Z dim $
1# $FreeBSD: head/sys/boot/pc98/boot2/Makefile 220361 2011-04-05 13:48:53Z nyan $
2
3.include <bsd.own.mk>
4
5# XXX: clang can compile the boot code just fine, but boot2 gets too big
6CC:=${CC:C/^(.*\/)?clang$/gcc/1}
7
8FILES= boot boot1 boot2
9

--- 13 unchanged lines hidden (view full) ---

23#BOOT2_UFS?= UFS1_ONLY
24
25CFLAGS= -Os \
26 -fno-guess-branch-probability \
27 -fomit-frame-pointer \
28 -fno-unit-at-a-time \
29 -mno-align-long-strings \
30 -mrtd \
2
3.include <bsd.own.mk>
4
5# XXX: clang can compile the boot code just fine, but boot2 gets too big
6CC:=${CC:C/^(.*\/)?clang$/gcc/1}
7
8FILES= boot boot1 boot2
9

--- 13 unchanged lines hidden (view full) ---

23#BOOT2_UFS?= UFS1_ONLY
24
25CFLAGS= -Os \
26 -fno-guess-branch-probability \
27 -fomit-frame-pointer \
28 -fno-unit-at-a-time \
29 -mno-align-long-strings \
30 -mrtd \
31 -mregparm=3 \
31 -D${BOOT2_UFS} \
32 -DFLAGS=${BOOT_BOOT1_FLAGS} \
33 -DSIOPRT=${BOOT_COMCONSOLE_PORT} \
34 -DSIOFMT=${B2SIOFMT} \
35 -DSIOSPD=${BOOT_COMCONSOLE_SPEED} \
36 -I${.CURDIR}/../../.. \
37 -I${.CURDIR}/../../i386/boot2 \
38 -I${.CURDIR}/../../common \

--- 70 unchanged lines hidden ---
32 -D${BOOT2_UFS} \
33 -DFLAGS=${BOOT_BOOT1_FLAGS} \
34 -DSIOPRT=${BOOT_COMCONSOLE_PORT} \
35 -DSIOFMT=${B2SIOFMT} \
36 -DSIOSPD=${BOOT_COMCONSOLE_SPEED} \
37 -I${.CURDIR}/../../.. \
38 -I${.CURDIR}/../../i386/boot2 \
39 -I${.CURDIR}/../../common \

--- 70 unchanged lines hidden ---