1 1.24 pooka # $NetBSD: Makefile,v 1.24 2009/01/16 19:39:52 pooka Exp $ 2 1.1 lukem # 3 1.1 lukem 4 1.9 lukem .include <bsd.own.mk> 5 1.9 lukem 6 1.1 lukem PROG= makefs 7 1.24 pooka SRCS= cd9660.c ffs.c \ 8 1.16 dyoung getid.c \ 9 1.24 pooka makefs.c misc.c \ 10 1.16 dyoung pack_dev.c \ 11 1.20 he spec.c \ 12 1.16 dyoung walk.c 13 1.2 lukem MAN= makefs.8 14 1.1 lukem 15 1.9 lukem MKNODSRC= ${NETBSDSRCDIR}/sbin/mknod 16 1.9 lukem MTREESRC= ${NETBSDSRCDIR}/usr.sbin/mtree 17 1.1 lukem 18 1.24 pooka CPPFLAGS+= -I${.CURDIR} -I${MKNODSRC} -I${MTREESRC} 19 1.24 pooka .PATH: ${MKNODSRC} ${MTREESRC} 20 1.24 pooka 21 1.24 pooka .include "${.CURDIR}/cd9660/Makefile.inc" 22 1.24 pooka .include "${.CURDIR}/ffs/Makefile.inc" 23 1.20 he 24 1.21 bouyer .if (${HOSTPROG:U} == "") 25 1.21 bouyer DPADD+= ${LIBUTIL} 26 1.20 he LDADD+= -lutil 27 1.21 bouyer .endif 28 1.1 lukem 29 1.15 fvdl WARNS?= 3 30 1.1 lukem 31 1.1 lukem .include <bsd.prog.mk> 32