Makefile revision 1.31
1#	$NetBSD: Makefile,v 1.31 2018/06/02 14:30:07 christos Exp $
2
3S=	${.CURDIR}/../../../..
4
5BASE= dosboot
6PROG= ${BASE}.com
7NEWVERSWHAT=	"DOS Boot"
8STARTFILE=	${DOSSTART}
9RELOC=		0x100
10
11SRCS= main.c devopen.c exec.c
12
13CPPFLAGS+= -DSLOW	# for libz
14CPPFLAGS+= -DCOMPAT_386BSD_MBRPART
15CPPFLAGS+= -DXMS
16CPPFLAGS+= -DLIBSA_ENABLE_LS_OP
17#uncomment if there are problems with memory detection
18#CPPFLAGS+= -DCONSERVATIVE_MEMDETECT
19
20#CFLAGS= -O2 -fomit-frame-pointer -fno-defer-pop
21CFLAGS+= -Wall -Wmissing-prototypes -Wstrict-prototypes -Wno-main
22
23# XXX should go into library
24SRCS+= getopt.c
25.PATH: ${.CURDIR}/../libsa
26
27# XXX these should depend on the size of the image
28CPPFLAGS+= -DSTACK_START=0x10000
29SAMISCCPPFLAGS+= -DHEAP_START=0x20000 -DHEAP_LIMIT=0x50000
30SAMISCMAKEFLAGS= SA_USE_CREAD=yes SA_INCLUDE_NET=no SA_ENABLE_LS_OP=yes
31I386MISCMAKEFLAGS= I386_INCLUDE_DOS=yes
32
33VERSIONFILE= ${.CURDIR}/version
34
35.include <bsd.init.mk>
36
37release: check_RELEASEDIR
38	${HOST_INSTALL_FILE} -m ${BINMODE} dosboot.com \
39	    ${RELEASEDIR}/${MACHINE}/installation/misc
40
41.include "../Makefile.booters"
42