Home | History | Annotate | Line # | Download | only in bootxx
Makefile revision 1.4.2.3
      1  1.4.2.3  nathanw #	$NetBSD: Makefile,v 1.4.2.3 2002/04/17 00:04:04 nathanw Exp $
      2  1.4.2.2  nathanw 
      3  1.4.2.2  nathanw PROG= bootxx
      4  1.4.2.2  nathanw SRCS= start.S bootxx.c
      5  1.4.2.2  nathanw NOMAN= # defined
      6  1.4.2.2  nathanw STRIPFLAG=
      7  1.4.2.2  nathanw BINMODE= 444
      8  1.4.2.2  nathanw SIZE?= size
      9  1.4.2.2  nathanw 
     10  1.4.2.2  nathanw .include <bsd.own.mk>
     11  1.4.2.2  nathanw 
     12  1.4.2.2  nathanw COMMON!=  cd ${.CURDIR}/../common && ${PRINTOBJDIR}
     13  1.4.2.2  nathanw 
     14  1.4.2.2  nathanw LDFLAGS= -x -N -Ttext a0004000 -e _start
     15  1.4.2.3  nathanw CFLAGS= -Os -mmemcpy -mno-abicalls -G 0 -Wall
     16  1.4.2.2  nathanw 
     17  1.4.2.2  nathanw CPPFLAGS+= -D_STANDALONE #-DBOOTXX_DEBUG
     18  1.4.2.2  nathanw CPPFLAGS+= -I${COMMON} -I${.CURDIR}/../../../..
     19  1.4.2.2  nathanw 
     20  1.4.2.2  nathanw AFLAGS= -D_LOCORE
     21  1.4.2.2  nathanw 
     22  1.4.2.2  nathanw LIBS=  ${COMMON}/romcalls.o
     23  1.4.2.2  nathanw LIBS+= ${COMMON}/lib/sa/libsa.a ${COMMON}/lib/kern/libkern.a
     24  1.4.2.2  nathanw 
     25  1.4.2.2  nathanw ${PROG}: ${OBJS}
     26  1.4.2.2  nathanw 	${LD} ${LDFLAGS} -o ${PROG} ${OBJS} ${LIBS}
     27  1.4.2.2  nathanw 	${SIZE} ${PROG}
     28  1.4.2.2  nathanw 
     29  1.4.2.2  nathanw .include <bsd.prog.mk>
     30