a583d89315
While here use the "e" functions to always check for allocation errors.
16 lines
313 B
Makefile
16 lines
313 B
Makefile
# $NetBSD: Makefile,v 1.18 2018/06/15 15:16:05 christos Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/18/93
|
|
|
|
WARNS?= 3 # XXX -Wsign-compare
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= dumplfs
|
|
SRCS= dumplfs.c lfs_cksum.c misc.c
|
|
.PATH: ${NETBSDSRCDIR}/sys/ufs/lfs
|
|
MAN= dumplfs.8
|
|
LDADD+= -lutil
|
|
DPADD+= ${LIBUTIL}
|
|
|
|
.include <bsd.prog.mk>
|