1# $NetBSD: Makefile,v 1.3 2019/06/14 01:54:16 christos Exp $ 2 3.include <bsd.own.mk> 4 5FILES= postinstall 6MAN= postinstall.8 7 8FILESDIR= /usr/sbin 9FILESMODE= ${BINMODE} 10FILESBUILD= yes 11 12ARCHSUBDIRS != ${TOOL_SED} -n '/ARCHDIR_SUBDIR/s/[[:space:]]//gp' \ 13 ${NETBSDSRCDIR}/compat/archdirs.mk 14 15.SUFFIXES: .in 16.in: 17 ${_MKTARGET_CREATE} 18 @rm -f ${.TARGET} 19 ${TOOL_SED} -e "s#@ARCHSUBDIRS@#${ARCHSUBDIRS}#" < ${.ALLSRC} > ${.TARGET} 20 21CLEANFILES+= postinstall 22 23.include <bsd.prog.mk> 24