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