freebsd-src/unit-tests/suff-transform-select.mk
Simon J. Gerraty 8e11a9b425 Import bmake-20210110
Quite a lot of churn on style, but lots of
good work refactoring complicated functions
and lots more unit-tests.
Thanks mostly to rillig at NetBSD

Some interesting entries from ChangeLog

o .MAKE.{UID,GID} represent uid and gid running make.

o allow env var MAKE_OBJDIR_CHECK_WRITABLE=no to skip writable
  checks in InitObjdir.  Explicit .OBJDIR target always allows
  read-only directory.

o add more unit tests for META MODE

Change-Id: I4d3bcf08b4c864d98b343f602efe5a75dbfa7a94
2021-01-13 17:24:34 -08:00

32 lines
863 B
Makefile

# $NetBSD: suff-transform-select.mk,v 1.3 2020/11/23 14:47:12 rillig Exp $
#
# https://gnats.netbsd.org/49086, issue 10:
# Explicit dependencies affect transformation rule selection.
#
# If issue10.e is wanted and both issue10.d and issue10.f are available,
# make should choose the .d.e rule, because .d is before .f in .SUFFIXES.
# The bug was that if issue10.d had an explicit dependency on issue10.f,
# it would choose .f.e instead.
.MAKEFLAGS: -ds
_!= rm -f issue10.*
all: issue10.e
.c.d .d.c .d .d.e .e.d:
: 'Making ${.TARGET} from ${.IMPSRC} (first set).'
.SUFFIXES: .c .d .e .f .g
.e .e.f .f.e:
: 'Making ${.TARGET} from ${.IMPSRC} (second set).'
issue10.d issue10.f:
: 'Making ${.TARGET} out of nothing.'
# XXX: see suff-bug-endless, which must be fixed first.
#.MAKEFLAGS: -dg1
# Before 24-11-2020, resolving all.e ran into an endless loop.