blob: 103611f9385079b6d6ee7b051c5c858b0377b66d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: Makefile,v 1.6 2002/12/08 20:20:02 thorpej Exp $
HOSTPROGNAME= ${_TOOL_PREFIX}makefs
HOST_SRCDIR= usr.sbin/makefs
DPSRCS+= ufs.stamp
HOST_CPPFLAGS+= -I.
CLEANFILES+= ufs
.include "${.CURDIR}/../Makefile.host"
$(OBJS): ufs.stamp
ufs.stamp:
-rm -f ufs
ln -f -s ${.CURDIR}/../../sys/ufs ufs
@touch $@
|