diff options
Diffstat (limited to 'tests/scripts/targets/SECONDARY')
-rw-r--r-- | tests/scripts/targets/SECONDARY | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/scripts/targets/SECONDARY b/tests/scripts/targets/SECONDARY index a6c5dab..cf580b5 100644 --- a/tests/scripts/targets/SECONDARY +++ b/tests/scripts/targets/SECONDARY @@ -108,5 +108,18 @@ $answer = "$make_name: `final' is up to date.\n"; unlink('source', 'final', 'intermediate'); + +# TEST #8 -- test the "global" .SECONDARY, with .PHONY. + +touch('version2'); +run_make_test(' +.PHONY: version +.SECONDARY: +version2: version ; @echo GOOD +all: version2', + 'all', 'GOOD'); + +unlink('version2'); + # This tells the test driver that the perl test script executed properly. 1; |