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 6PROG= installboot 7SRCS= 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 10MAN= installboot.8 11 12WARNS?= 3 13 14UFSSRC= ${_SRC_TOP_}/sys/ufs 15CPPFLAGS+= -I${.CURDIR} -I. 16.PATH: ${.CURDIR}/arch ${UFSSRC}/ffs 17 18 19sun68k.c: sun68k_bbinfo.h 20 21sun68k_bbinfo.h: ${_SRC_TOP_}/sys/arch/sun68k/stand/libsa/bbinfo.h 22 @echo "Copying ${.ALLSRC} to ${.TARGET}" 23 @cp ${.ALLSRC} ${.TARGET} 24 25CLEANFILES+= sun68k_bbinfo.h 26 27 28.ifndef HOSTPROG 29.include <bsd.prog.mk> 30.endif 31