Deleted Added
full compact
Makefile (60702) Makefile (65598)
1# $FreeBSD: head/sys/boot/i386/loader/Makefile 60702 2000-05-19 08:41:45Z dcs $
1# $FreeBSD: head/sys/boot/i386/loader/Makefile 65598 2000-09-08 04:26:55Z imp $
2
3BASE= loader
4PROG= ${BASE}
5#NOMAN=
6STRIP=
7NEWVERSWHAT= "bootstrap loader" i386
8BINDIR?= /boot
9

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

40CFLAGS+= -Wall
41LDFLAGS= -nostdlib -static -Ttext 0x0
42
43# i386 standalone support library
44LIBI386= ${.OBJDIR}/../libi386/libi386.a
45CFLAGS+= -I${.CURDIR}/..
46
47# where to get libstand from
2
3BASE= loader
4PROG= ${BASE}
5#NOMAN=
6STRIP=
7NEWVERSWHAT= "bootstrap loader" i386
8BINDIR?= /boot
9

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

40CFLAGS+= -Wall
41LDFLAGS= -nostdlib -static -Ttext 0x0
42
43# i386 standalone support library
44LIBI386= ${.OBJDIR}/../libi386/libi386.a
45CFLAGS+= -I${.CURDIR}/..
46
47# where to get libstand from
48#XXX need a better way to do this
49LIBSTAND= ${.CURDIR}/../../../../lib/libstand/libstand.a
50.if !exists(${LIBSTAND})
51LIBSTAND= ${.OBJDIR}/../../../../lib/libstand/libstand.a
52.if !exists(${LIBSTAND})
48LIBSTAND= -lstand
53LIBSTAND= -lstand
49#LIBSTAND= ${.CURDIR}/../../../../lib/libstand/libstand.a
54.endif
55.endif
50CFLAGS+= -I${.CURDIR}/../../../../lib/libstand/
51
52# BTX components
53.if exists(${.OBJDIR}/../btx)
54BTXDIR= ${.OBJDIR}/../btx
55.else
56BTXDIR= ${.CURDIR}/../btx
57.endif

--- 73 unchanged lines hidden ---
56CFLAGS+= -I${.CURDIR}/../../../../lib/libstand/
57
58# BTX components
59.if exists(${.OBJDIR}/../btx)
60BTXDIR= ${.OBJDIR}/../btx
61.else
62BTXDIR= ${.CURDIR}/../btx
63.endif

--- 73 unchanged lines hidden ---