Lines Matching refs:sym
18 # Set up a symlink sym -> dep
19 # We'll make both dep and targ older than sym
24 symlink("../$dirnm/dep", 'sym');
28 run_make_test('targ: sym ; @echo make $@ from $<', '',
30 run_make_test(undef, '-L', "make targ from sym");
34 run_make_test(undef, '', "make targ from sym");
35 run_make_test(undef, '-L', "make targ from sym");
42 # Add in a new link between sym and dep. Be sure it's newer than targ.
50 run_make_test(undef, '-L', "make targ from sym");
52 rmfiles('targ', 'dep', 'sym', 'dep1');
57 symlink("../$dirname/dep", 'sym');
58 run_make_test('targ: sym ; @echo make $@ from $<', '',
59 "#MAKE#: *** No rule to make target `sym', needed by `targ'. Stop.", 512);
61 run_make_test('targ: sym ; @echo make $@ from $<', '-L',
62 'make targ from sym');
65 rmfiles('targ', 'sym');