Invert bootstrap compiler test.

This commit is contained in:
Aleksej Saushev 2009-12-12 16:07:55 +00:00 committed by Thomas Klausner
parent 47d89a3b51
commit da5fc1c2f3

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.5 2009/12/12 16:00:21 asau Exp $
# $NetBSD: Makefile,v 1.6 2009/12/12 16:07:55 asau Exp $
DISTNAME= mlton
PKGNAME= mlton-0
@ -11,10 +11,9 @@ LICENSE= modified-bsd
USE_TOOLS+= gmake
.if !defined(MLTON_BOOT) || $(MLTON_BOOT) == "mlton"
.if defined(MLTON_BOOT) && $(MLTON_BOOT) == "mlton"
BUILD_TARGET= all
.else
# use SML/NJ
.else # use SML/NJ
BUILD_DEPENDS+= smlnj-[0-9]*:../../lang/smlnj
BUILD_TARGET= smlnj-mlton all
.endif