Home | History | Annotate | Line # | Download | only in dosboot
Makefile revision 1.4
      1  1.4  drochner #	$NetBSD: Makefile,v 1.4 1997/06/13 13:17:47 drochner Exp $
      2  1.1     perry 
      3  1.2   thorpej S=	${.CURDIR}/../../../../
      4  1.1     perry 
      5  1.1     perry PROG= dosboot
      6  1.1     perry NOMAN=
      7  1.1     perry 
      8  1.1     perry SRCS= main.c devopen.c version.c
      9  1.1     perry 
     10  1.1     perry CLEANFILES+= ${DOSSTART} ${PROG}.sym ${PROG}.com ${PROG}.list
     11  1.1     perry 
     12  1.1     perry CPPFLAGS+= -DCOMPAT_OLDBOOT
     13  1.1     perry 
     14  1.1     perry #CFLAGS= -O2 -fomit-frame-pointer -fno-defer-pop
     15  1.4  drochner CFLAGS+= -Wall
     16  1.1     perry 
     17  1.1     perry # XXX should go into library
     18  1.1     perry SRCS+= getopt.c ls.c
     19  1.1     perry .PATH: ${.CURDIR}/../libsa
     20  1.1     perry 
     21  1.1     perry ${PROG}: ${PROG}.com
     22  1.1     perry 	@# do nothing
     23  1.1     perry 
     24  1.3   mycroft proginstall::
     25  1.1     perry 	${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
     26  1.1     perry 	    ${PROG}.com ${DESTDIR}${BINDIR}
     27  1.1     perry 
     28  1.4  drochner SAMISCCPPFLAGS+= -DHEAP_START=0x10000 -DHEAP_LIMIT=0x40000
     29  1.1     perry SAMISCMAKEFLAGS= SA_USE_CREAD=yes SA_INCLUDE_NET=no
     30  1.1     perry I386MISCMAKEFLAGS= I386_INCLUDE_DOS=yes
     31  1.1     perry 
     32  1.1     perry .include "../Makefile.booters"
     33