Initial import from FreeBSD RELENG_4:
[dragonfly.git] / sys / boot / pc32 / libi386 / Makefile
1 # $FreeBSD: src/sys/boot/i386/libi386/Makefile,v 1.15.2.5 2002/07/19 18:46:28 ru Exp $
2 #
3 LIB=                    i386
4 INTERNALLIB=            true
5
6 SRCS=   aout_freebsd.c bioscd.c biosdisk.c biosmem.c biospnp.c biospci.c \
7         bootinfo.c comconsole.c devicename.c elf_freebsd.c gatea20.c \
8         i386_copy.c i386_module.c nullconsole.c pxe.c pxetramp.s \
9         time.c vidconsole.c
10
11 CFLAGS+=        -I${.CURDIR}/../../common -I${.CURDIR}/../btx/lib \
12                 -I${.CURDIR}/../../.. -I.
13
14 BOOT_COMCONSOLE_PORT?= 0x3f8
15 CFLAGS+=        -DCOMPORT=${BOOT_COMCONSOLE_PORT}
16
17 BOOT_COMCONSOLE_SPEED?= 9600
18 CFLAGS+=        -DCOMSPEED=${BOOT_COMCONSOLE_SPEED}
19
20 # the location of libstand
21 CFLAGS+=        -I${.CURDIR}/../../../../lib/libstand/
22
23 .ifdef(BOOT_BIOSDISK_DEBUG)
24 # Make the disk code more talkative
25 CFLAGS+= -DDISK_DEBUG
26 .endif
27
28 # Include simple terminal emulation (cons25-compatible)
29 CFLAGS+= -DTERM_EMU
30
31 # Make "machine" required for all objects
32 # (based on the more complete case in sys/i386/boot/Makefile.inc)
33 ${SRCS:M*.c:R:S/$/.o/g}: machine
34
35 # If it's not there, don't consider it a target
36 .if exists(${.CURDIR}/../../../i386/include)
37 beforedepend ${OBJS}: machine
38
39 machine:
40         ln -sf ${.CURDIR}/../../../i386/include machine
41
42 .endif
43
44 CLEANFILES+=    machine
45
46 .include <bsd.lib.mk>