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