Home | History | Annotate | Line # | Download | only in stand
Makefile.bootprogs revision 1.5
      1  1.5      matt # $NetBSD: Makefile.bootprogs,v 1.5 2013/08/21 07:08:30 matt Exp $
      2  1.1       uwe 
      3  1.1       uwe S=		${.CURDIR}/../../../../..
      4  1.1       uwe 
      5  1.1       uwe NOMAN=		# defined
      6  1.1       uwe 
      7  1.1       uwe BINDIR=		/usr/mdec
      8  1.1       uwe BINMODE=	0444
      9  1.1       uwe 
     10  1.1       uwe PRIMARY_LOAD_ADDRESS?=0x8c201000
     11  1.1       uwe SECONDARY_LOAD_ADDRESS?=0x8ff00000
     12  1.1       uwe 
     13  1.1       uwe .include <bsd.own.mk>
     14  1.5      matt .include <bsd.klinks.mk>
     15  1.1       uwe 
     16  1.1       uwe STRIPFLAG=	# override
     17  1.1       uwe 
     18  1.1       uwe LIBCRT0=	# nothing
     19  1.1       uwe LIBCRTBEGIN=	# nothing
     20  1.1       uwe LIBCRTEND=	# nothing
     21  1.1       uwe LIBC=		# nothing
     22  1.1       uwe 
     23  1.1       uwe .PATH:	${.CURDIR}/..
     24  1.1       uwe 
     25  1.2    nonaka COPTS=		-m4-nofpu -Os -ffreestanding
     26  1.1       uwe 
     27  1.1       uwe LDFLAGS+=	-N
     28  1.1       uwe CFLAGS+=	-Wall -Wmissing-prototypes -Wstrict-prototypes
     29  1.1       uwe CPPFLAGS+=	-nostdinc -D_STANDALONE
     30  1.1       uwe CPPFLAGS+=	-DSH4
     31  1.1       uwe CPPFLAGS+=	-I${.OBJDIR} -I${.CURDIR}/.. -I${.CURDIR}/../../boot -I${S}
     32  1.1       uwe 
     33  1.1       uwe ### find out what to use for libsa
     34  1.1       uwe SA_AS= library
     35  1.1       uwe .include "${S}/lib/libsa/Makefile.inc"
     36  1.1       uwe LIBSA= ${SALIB}
     37  1.1       uwe CPPFLAGS+=	-I$(SADIR)
     38  1.1       uwe 
     39  1.1       uwe ### find out what to use for libkern
     40  1.1       uwe KERN_AS= library
     41  1.1       uwe .include "${S}/lib/libkern/Makefile.inc"
     42  1.1       uwe LIBKERN= ${KERNLIB}
     43  1.1       uwe 
     44  1.1       uwe ### find out what to use for libz
     45  1.1       uwe Z_AS= library
     46  1.1       uwe .include "${S}/lib/libz/Makefile.inc"
     47  1.1       uwe LIBZ= ${ZLIB}
     48  1.1       uwe 
     49  1.4  dholland cleandir distclean: .WAIT cleanlibdir
     50  1.1       uwe 
     51  1.1       uwe cleanlibdir:
     52  1.1       uwe 	-rm -rf lib
     53