blob: 4e7fd64a3ed420c6ab800702c7604dd6a652990a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $NetBSD: Makefile,v 1.5 2009/04/08 17:24:55 christos Exp $
.include <bsd.own.mk>
.if defined(__MINIX) && 0
# LSC FIXME: Hackish way to trigger the fetch phase from here
# in the same way as from tools.
MODULE= gmake
.include "${.CURDIR}/../../tools/Makefile.gnuhost"
# Force the mapping to standard targets even when not building tools
# We considere work to be done as soon as the fetch step is done,
# as everything else has to be triggered from /tools or ../usr.bin
.if ${USETOOLS} != "yes"
realall realinstall: ${GNUHOSTDIST:H}/.gitignore
.endif # defined(__MINIX)
.if (${MKCVS} != "no")
SUBDIR+= xcvs
.endif
.if (${MKLVM} != "no")
SUBDIR+= lvm2
.endif
.include <bsd.subdir.mk>
|