Makefile revision 40554
1# $Id: Makefile,v 1.8 1998/10/14 07:08:16 peter Exp $
2#
3LIB=			i386
4NOPIC=
5NOPROFILE=
6INTERNALLIB=		true
7INTERNALSTATICLIB=	true
8
9SRCS=	aout_freebsd.c biosdisk.c biosmem.c bootinfo.c comconsole.c \
10	devicename.c elf_freebsd.c gatea20.c i386_copy.c i386_module.c time.c vidconsole.c
11
12CFLAGS+=	-I${.CURDIR}/../../common -I${.CURDIR}/../btx/lib \
13		-I${.CURDIR}/../../.. -I.
14
15# Make the disk code more talkative
16#CFLAGS+= -DDISK_DEBUG
17
18# If it's not there, don't consider it a target
19.if exists(${.CURDIR}/../../../i386/include)
20beforedepend ${OBJS}: machine
21
22machine:
23	ln -sf ${.CURDIR}/../../../i386/include machine
24
25.endif
26
27CLEANFILES+=	machine
28
29.include <bsd.lib.mk>
30