35 lines
996 B
Makefile
35 lines
996 B
Makefile
# $NetBSD: directive-include.mk,v 1.5 2020/11/21 14:59:11 rillig Exp $
|
|
#
|
|
# Tests for the .include directive, which includes another file.
|
|
|
|
# TODO: Implementation
|
|
|
|
.MAKEFLAGS: -dc
|
|
|
|
# All included files are recorded in the variable .MAKE.MAKEFILES.
|
|
# In this test, only the basenames of the files are compared since
|
|
# the directories can differ.
|
|
.include "/dev/null"
|
|
.if ${.MAKE.MAKEFILES:T} != "${.PARSEFILE} null"
|
|
. error
|
|
.endif
|
|
|
|
# Each file is recorded only once in the variable .MAKE.MAKEFILES.
|
|
# Between 2015-11-26 and 2020-10-31, the very last file could be repeated,
|
|
# due to an off-by-one bug in ParseTrackInput.
|
|
.include "/dev/null"
|
|
.if ${.MAKE.MAKEFILES:T} != "${.PARSEFILE} null"
|
|
. error
|
|
.endif
|
|
|
|
.include "nonexistent.mk"
|
|
.include "/dev/null" # size 0
|
|
# including a directory technically succeeds, but shouldn't.
|
|
#.include "." # directory
|
|
|
|
# As of 2020-11-21, anything after the delimiter '"' is ignored.
|
|
.include "/dev/null" and ignore anything in the rest of the line.
|
|
|
|
all:
|
|
@:;
|