Home | History | Annotate | Line # | Download | only in bootxx
Makefile revision 1.4.12.3
      1  1.4.12.3  nathanw #	$NetBSD: Makefile,v 1.4.12.3 2002/06/20 03:39:40 nathanw Exp $
      2       1.1   tsubai 
      3  1.4.12.3  nathanw PROG=		bootxx
      4  1.4.12.3  nathanw NOMAN=		# defined
      5  1.4.12.3  nathanw BINMODE=	444
      6       1.1   tsubai 
      7  1.4.12.3  nathanw CFLAGS=		-Os -mmultiple -Wall -msoft-float
      8  1.4.12.3  nathanw CPPFLAGS+=	-D_STANDALONE
      9  1.4.12.3  nathanw STRIPFLAG=
     10  1.4.12.3  nathanw LINKFLAGS=	-x -N -Ttext 4000 -e _start
     11  1.4.12.3  nathanw CLEANFILES+=	${PROG}.sym
     12       1.1   tsubai 
     13  1.4.12.3  nathanw ${PROG}: ${OBJS}
     14  1.4.12.3  nathanw 	${LD} -o ${.TARGET}.sym ${LINKFLAGS} ${OBJS}
     15  1.4.12.3  nathanw 	@${SIZE} ${.TARGET}.sym
     16  1.4.12.3  nathanw 	${OBJCOPY} -O binary ${.TARGET}.sym ${.TARGET}
     17       1.1   tsubai 
     18       1.1   tsubai .include <bsd.prog.mk>
     19