diff options
Diffstat (limited to 'sys/boot/pc98/libpc98/Makefile')
-rw-r--r-- | sys/boot/pc98/libpc98/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/sys/boot/pc98/libpc98/Makefile b/sys/boot/pc98/libpc98/Makefile new file mode 100644 index 0000000..fad0149 --- /dev/null +++ b/sys/boot/pc98/libpc98/Makefile @@ -0,0 +1,42 @@ +# $Id: Makefile,v 1.13 1999/01/10 14:48:04 rnordier Exp $ +# +LIB= pc98 +NOPIC= +NOPROFILE= +INTERNALLIB= true +INTERNALSTATICLIB= true + +SRCS= aout_freebsd.c biosdisk.c biosmem.c biospnp.c biospci.c \ + bootinfo.c comconsole.c devicename.c elf_freebsd.c gatea20.c \ + i386_copy.c i386_module.c time.c vidconsole.c +.PATH: ${.CURDIR}/../../i386/libi386 + +CFLAGS+= -DPC98 + +CFLAGS+= -I${.CURDIR}/../../common -I${.CURDIR}/../btx/lib \ + -I${.CURDIR}/../../.. -I. -I${.CURDIR}/../../i386/libi386 + +BOOT_COMCONSOLE_PORT?= 0x238 +CFLAGS+= -DCOMPORT=${BOOT_COMCONSOLE_PORT} + +BOOT_COMCONSOLE_SPEED?= 9600 +CFLAGS+= -DCOMSPEED=${BOOT_COMCONSOLE_SPEED} + +# Make the disk code more talkative +#CFLAGS+= -DDISK_DEBUG + +# Include simple terminal emulation (cons25-compatible) +CFLAGS+= -DTERM_EMU + +# If it's not there, don't consider it a target +.if exists(${.CURDIR}/../../../i386/include) +beforedepend ${OBJS}: machine + +machine: + ln -sf ${.CURDIR}/../../../i386/include machine + +.endif + +CLEANFILES+= machine + +.include <bsd.lib.mk> |