Deleted Added
full compact
Makefile (117160) Makefile (125537)
1# $FreeBSD: head/sys/boot/i386/libi386/Makefile 117160 2003-07-02 12:45:45Z ru $
1# $FreeBSD: head/sys/boot/i386/libi386/Makefile 125537 2004-02-06 21:58:32Z ru $
2#
3LIB= i386
4INTERNALLIB= true
5
6SRCS= biosacpi.c bioscd.c biosdisk.c biosmem.c biospnp.c \
7 biospci.c biossmap.c bootinfo.c bootinfo32.c bootinfo64.c \
8 comconsole.c devicename.c elf32_freebsd.c \
9 elf64_freebsd.c gatea20.c \

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

26CFLAGS+= -DTERM_EMU
27
28CFLAGS+= -I${.CURDIR}/../../common -I${.CURDIR}/../btx/lib \
29 -I${.CURDIR}/../../../contrib/dev/acpica \
30 -I${.CURDIR}/../../.. -I.
31# the location of libstand
32CFLAGS+= -I${.CURDIR}/../../../../lib/libstand/
33
2#
3LIB= i386
4INTERNALLIB= true
5
6SRCS= biosacpi.c bioscd.c biosdisk.c biosmem.c biospnp.c \
7 biospci.c biossmap.c bootinfo.c bootinfo32.c bootinfo64.c \
8 comconsole.c devicename.c elf32_freebsd.c \
9 elf64_freebsd.c gatea20.c \

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

26CFLAGS+= -DTERM_EMU
27
28CFLAGS+= -I${.CURDIR}/../../common -I${.CURDIR}/../btx/lib \
29 -I${.CURDIR}/../../../contrib/dev/acpica \
30 -I${.CURDIR}/../../.. -I.
31# the location of libstand
32CFLAGS+= -I${.CURDIR}/../../../../lib/libstand/
33
34# Make "machine" required for all objects
35# (based on the more complete case in sys/i386/boot/Makefile.inc)
36${SRCS:M*.c:R:S/$/.o/g}: machine
34.include <bsd.lib.mk>
37
35
38# If it's not there, don't consider it a target
39.if exists(${.CURDIR}/../../../i386/include)
40beforedepend ${OBJS}: machine
41
36.if defined(REALLY_AMD64)
37${OBJS}: machine
42CLEANFILES+= machine
43machine:
44 ln -sf ${.CURDIR}/../../../i386/include machine
38CLEANFILES+= machine
39machine:
40 ln -sf ${.CURDIR}/../../../i386/include machine
45
46.endif
41.endif
47
48.include <bsd.lib.mk>