Home | History | Annotate | Line # | Download | only in installboot
      1 #	$NetBSD: Makefile,v 1.18 2016/01/25 21:58:02 christos Exp $
      2 
      3 NOMAN=	# defined
      4 
      5 .include <bsd.own.mk>
      6 
      7 PROG=	installboot
      8 BINDIR=/usr/mdec
      9 LIBSA=${.CURDIR}/../../../../lib/libsa
     10 COPTS+= -Wall -Wstrict-prototypes -Wmissing-prototypes
     11 CPPFLAGS+= -I${LIBSA} -I. -D__daddr_t=int32_t -D_KERNTYPES
     12 # Need this to work in the miniroot
     13 LDSTATIC= -static
     14 
     15 .PATH.c: ${LIBSA}
     16 
     17 SRCS=	installboot.c byteorder.c loadfile.c loadfile_aout.c loadfile_elf32.c
     18 
     19 .include <bsd.prog.mk>
     20 .include <bsd.klinks.mk>
     21