Makefile revision 1.4
1#	$NetBSD: Makefile,v 1.4 2001/12/11 21:18:01 tv Exp $
2
3HOSTPROGNAME=	nbmkdep
4HOST_SRCDIR=	usr.bin/mkdep
5NOCOMPATLIB=	# defined
6
7.PATH:		${.CURDIR}/../compat
8SRCS=		mkdep.c setprogname.c
9
10.include "${.CURDIR}/../Makefile.host"
11
12# Don't run mkdep on mkdep.
13MKDEP=		touch $@ || true
14
15# This is the only program that comes before binstall.
16INSTALL=	@true
17${HOST_BINDIR}/${HOSTPROGNAME}:: mkdep
18	-rm -f $@
19	cp mkdep $@
20