xref: /netbsd/sys/arch/i386/stand/dosboot/Makefile (revision bf9ec67e)
1#	$NetBSD: Makefile,v 1.20 2002/02/17 20:03:09 thorpej Exp $
2
3S=	${.CURDIR}/../../../../
4
5BASE= dosboot
6PROG= ${BASE}.com
7NOMAN=	# defined
8NEWVERSWHAT=	"DOS Boot"
9STARTFILE=	${DOSSTART}
10RELOC=		0x100
11
12SRCS= main.c devopen.c exec.c
13
14CPPFLAGS+= -DCOMPAT_386BSD_MBRPART
15CPPFLAGS+= -DXMS
16#uncomment if there are problems with memory detection
17#CPPFLAGS+= -DCONSERVATIVE_MEMDETECT
18
19#CFLAGS= -O2 -fomit-frame-pointer -fno-defer-pop
20CFLAGS+= -Wall -Wmissing-prototypes -Wstrict-prototypes -Wno-main
21
22# XXX should go into library
23SRCS+= getopt.c
24.PATH: ${.CURDIR}/../libsa
25
26SAMISCCPPFLAGS+= -DHEAP_START=0x10000 -DHEAP_LIMIT=0x40000
27SAMISCMAKEFLAGS= SA_USE_CREAD=yes SA_INCLUDE_NET=no
28I386MISCMAKEFLAGS= I386_INCLUDE_DOS=yes
29
30VERSIONFILE= ${.CURDIR}/version
31
32.include <bsd.own.mk>
33
34.ifndef RELEASEDIR
35release:
36	@echo setenv RELEASEDIR first
37	@false
38.else
39release:
40	cp dosboot.com ${RELEASEDIR}/installation/misc
41.endif
42
43.include "../Makefile.booters"
44