Implemented dontcare flag inheritance when rebuilding makefiles.

This commit is contained in:
Boris Kolpackov
2004-09-28 18:13:55 +00:00
parent 341312cc57
commit fb6410f435
4 changed files with 52 additions and 1 deletions

View File

@@ -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;