Home | History | Annotate | Line # | Download | only in installboot
Makefile revision 1.15
      1 #	$NetBSD: Makefile,v 1.15 2002/04/23 02:39:33 lukem Exp $
      2 #
      3 
      4 .include <bsd.own.mk>
      5 
      6 PROG=	installboot
      7 SRCS=	installboot.c sum.c machines.c fstypes.c \
      8 	ffs.c ffs_bswap.c \
      9 	alpha.c pmax.c sparc64.c sun68k.c vax.c
     10 MAN=	installboot.8
     11 
     12 WARNS?=	3
     13 
     14 UFSSRC=		${_SRC_TOP_}/sys/ufs
     15 CPPFLAGS+=	-I${.CURDIR} -I.
     16 .PATH:		${.CURDIR}/arch ${UFSSRC}/ffs
     17 
     18 
     19 sun68k.c:	sun68k_bbinfo.h
     20 
     21 sun68k_bbinfo.h: ${_SRC_TOP_}/sys/arch/sun68k/stand/libsa/bbinfo.h
     22 	@echo "Copying ${.ALLSRC} to ${.TARGET}"
     23 	@cp ${.ALLSRC} ${.TARGET}
     24 
     25 CLEANFILES+=	sun68k_bbinfo.h
     26 
     27 
     28 .ifndef HOSTPROG
     29 .include <bsd.prog.mk>
     30 .endif
     31