21 lines
392 B
Makefile
21 lines
392 B
Makefile
# $NetBSD: Makefile,v 1.17 2002/04/26 16:23:15 lukem Exp $
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= installboot
|
|
SRCS= installboot.c sum.c machines.c fstypes.c \
|
|
ffs.c ffs_bswap.c \
|
|
alpha.c pmax.c sparc64.c sun68k.c vax.c
|
|
MAN= installboot.8
|
|
|
|
WARNS?= 3
|
|
|
|
UFSSRC= ${NETBSDSRCDIR}/sys/ufs
|
|
CPPFLAGS+= -I${.CURDIR} -I.
|
|
.PATH: ${.CURDIR}/arch ${UFSSRC}/ffs
|
|
|
|
.ifndef HOSTPROG
|
|
.include <bsd.prog.mk>
|
|
.endif
|