summaryrefslogtreecommitdiff
path: root/tests/scripts/features/include
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@kolpackov.net>2004-09-28 18:13:55 +0000
committerBoris Kolpackov <boris@kolpackov.net>2004-09-28 18:13:55 +0000
commitfb6410f43583a9e0b457d675e1bc2d1ed5ba279b (patch)
tree9fe0b1ee1ec8a39a284cc418b1b64bc748d8b4d5 /tests/scripts/features/include
parent341312cc57eba0a1888b3dc89510894e3e7e42c9 (diff)
downloadmake-git-fb6410f43583a9e0b457d675e1bc2d1ed5ba279b.tar.gz
Implemented dontcare flag inheritance when rebuilding makefiles.
Diffstat (limited to 'tests/scripts/features/include')
-rw-r--r--tests/scripts/features/include12
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/scripts/features/include b/tests/scripts/features/include
index 5f20ad87..f48cbd3f 100644
--- a/tests/scripts/features/include
+++ b/tests/scripts/features/include
@@ -16,7 +16,7 @@ open(MAKEFILE,"> $makefile");
print MAKEFILE <<EOF;
\#Extra space at the end of the following file name
-include $makefile2
+include $makefile2
all: ; \@echo There should be no errors for this makefile.
-include nonexistent.mk
@@ -78,5 +78,15 @@ hello: ; @echo hello
"hello\n"
);
+# Test inheritance of dontcare flag when rebuilding makefiles.
+#
+run_make_test('
+.PHONY: all
+all: ; @:
+
+-include foo
+
+foo: bar; @:
+', '', '');
1;