Initial import from FreeBSD RELENG_4:
[dragonfly.git] / sys / boot / pc98 / libpc98 / Makefile
1 # $FreeBSD: src/sys/boot/pc98/libpc98/Makefile,v 1.3.2.5 2002/07/19 18:46:29 ru Exp $
2 #
3 LIB=                    pc98
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 .PATH:  ${.CURDIR}/../../i386/libi386
12
13 CFLAGS+=        -DPC98
14
15 CFLAGS+=        -I${.CURDIR}/../../common -I${.CURDIR}/../btx/lib \
16                 -I${.CURDIR}/../../.. -I. -I${.CURDIR}/../../i386/libi386
17
18 BOOT_COMCONSOLE_PORT?= 0x238
19 CFLAGS+=        -DCOMPORT=${BOOT_COMCONSOLE_PORT}
20
21 BOOT_COMCONSOLE_SPEED?= 9600
22 CFLAGS+=        -DCOMSPEED=${BOOT_COMCONSOLE_SPEED}
23
24 # the location of libstand
25 CFLAGS+=        -I${.CURDIR}/../../../../lib/libstand/
26
27 .ifdef(BOOT_BIOSDISK_DEBUG)
28 # Make the disk code more talkative
29 CFLAGS+= -DDISK_DEBUG
30 .endif
31
32 # Include simple terminal emulation (cons25-compatible)
33 CFLAGS+= -DTERM_EMU
34
35 # Make "machine" required for all objects
36 # (based on the more complete case in sys/i386/boot/Makefile.inc)
37 ${SRCS:M*.c:R:S/$/.o/g}: machine
38
39 # If it's not there, don't consider it a target
40 .if exists(${.CURDIR}/../../../i386/include)
41 beforedepend ${OBJS}: machine
42
43 machine:
44         ln -sf ${.CURDIR}/../../../i386/include machine
45
46 .endif
47
48 CLEANFILES+=    machine
49
50 .include <bsd.lib.mk>