blob: b4f5ce83c1d0d31e37f681c06582dabae167e0ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.1 2020/07/22 19:00:20 roy Exp $
#
.include <bsd.own.mk>
.include "../../Makefile.inc"
FILES= avahi-daemon mdnsd
FILESDIR= /libexec/resolvconf/libc.d
# We should not have to do this ...
.for f in ${FILES}
FILESBUILD_$f= yes
.endfor
CLEANFILES= ${FILES}
.for f in ${FILES}
${f}: Makefile ${f}.in
${TOOL_SED} ${RESOLVCONF_SED} ${DIST}/${f}.in >$@
.endfor
.include <bsd.prog.mk>
|