Home | History | Annotate | Line # | Download | only in dosboot
Makefile revision 1.9
      1  1.9  drochner #	$NetBSD: Makefile,v 1.9 1997/09/28 11:47:31 drochner Exp $
      2  1.1     perry 
      3  1.2   thorpej S=	${.CURDIR}/../../../../
      4  1.1     perry 
      5  1.9  drochner BASE= dosboot
      6  1.9  drochner PROG= ${BASE}.com
      7  1.1     perry NOMAN=
      8  1.6   thorpej NEWVERSWHAT=	"DOS Boot"
      9  1.1     perry 
     10  1.6   thorpej SRCS= main.c devopen.c
     11  1.1     perry 
     12  1.9  drochner CLEANFILES+= ${DOSSTART} ${BASE}.sym
     13  1.1     perry 
     14  1.5  drochner CPPFLAGS+= -DCOMPAT_OLDBOOT -DXMS
     15  1.8  drochner #uncomment if there are problems with memory detection
     16  1.8  drochner #CPPFLAGS+= -DCONSERVATIVE_MEMDETECT
     17  1.1     perry 
     18  1.1     perry #CFLAGS= -O2 -fomit-frame-pointer -fno-defer-pop
     19  1.4  drochner CFLAGS+= -Wall
     20  1.1     perry 
     21  1.1     perry # XXX should go into library
     22  1.1     perry SRCS+= getopt.c ls.c
     23  1.1     perry .PATH: ${.CURDIR}/../libsa
     24  1.1     perry 
     25  1.4  drochner SAMISCCPPFLAGS+= -DHEAP_START=0x10000 -DHEAP_LIMIT=0x40000
     26  1.1     perry SAMISCMAKEFLAGS= SA_USE_CREAD=yes SA_INCLUDE_NET=no
     27  1.1     perry I386MISCMAKEFLAGS= I386_INCLUDE_DOS=yes
     28  1.1     perry 
     29  1.1     perry .include "../Makefile.booters"
     30