Get rid of 4.x-derived acpi code:
[dragonfly.git] / sys / boot / pc32 / libi386 / Makefile
blob6b8f9683e3e56373aedee3543f3e9774241a8a3c
1 # $FreeBSD: src/sys/boot/i386/libi386/Makefile,v 1.32 2003/07/02 12:45:45 ru Exp $
2 # $DragonFly: src/sys/boot/pc32/libi386/Makefile,v 1.6 2005/08/16 10:31:35 y0netan1 Exp $
4 LIB= i386
5 INTERNALLIB= true
6 SYSDIR?= ${.CURDIR}/../../..
7 .include "${SYSDIR}/conf/acpi.mk"
9 SRCS= biosacpi.c bioscd.c biosdisk.c biosmem.c biospnp.c \
10 biospci.c biossmap.c bootinfo.c bootinfo32.c bootinfo64.c \
11 comconsole.c devicename.c elf32_freebsd.c \
12 elf64_freebsd.c gatea20.c \
13 i386_copy.c i386_module.c nullconsole.c pxe.c pxetramp.s \
14 time.c vidconsole.c amd64_tramp.S
16 CFLAGS+= -ffreestanding
17 BOOT_COMCONSOLE_PORT?= 0x3f8
18 CFLAGS+= -DCOMPORT=${BOOT_COMCONSOLE_PORT}
20 BOOT_COMCONSOLE_SPEED?= 9600
21 CFLAGS+= -DCOMSPEED=${BOOT_COMCONSOLE_SPEED}
23 .ifdef(BOOT_BIOSDISK_DEBUG)
24 # Make the disk code more talkative
25 CFLAGS+= -DDISK_DEBUG
26 .endif
28 # Include simple terminal emulation (cons25-compatible)
29 CFLAGS+= -DTERM_EMU
31 CFLAGS+= -I${.CURDIR}/../../common -I${.CURDIR}/../btx/lib \
32 -I"${SYSDIR}/${ACPICA_DIR}/include" \
33 -I"${SYSDIR}/${OSACPI_MI_DIR}" \
34 -I${.CURDIR}/../../.. -I.
35 # the location of libstand
36 CFLAGS+= -I${.CURDIR}/../../../../lib/libstand/
38 # Make "machine" required for all objects
39 # (based on the more complete case in sys/i386/boot/Makefile.inc)
40 ${SRCS:M*.c:R:S/$/.o/g}: machine
42 # If it's not there, don't consider it a target
43 .if exists(${.CURDIR}/../../../i386/include)
44 beforedepend ${OBJS}: machine
46 CLEANFILES+= machine
47 machine:
48 ${LN} -sf ${.CURDIR}/../../../i386/include machine
50 .endif
52 .include <bsd.lib.mk>