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