Lines Matching refs:targ
19 # We'll make both dep and targ older than sym
23 &utouch(-5, 'targ');
27 # With -L, it should update targ
28 run_make_test('targ: sym ; @echo make $@ from $<', '',
29 "#MAKE#: `targ' is up to date.");
30 run_make_test(undef, '-L', "make targ from sym");
32 # Now update dep; in all cases targ should be out of date.
34 run_make_test(undef, '', "make targ from sym");
35 run_make_test(undef, '-L', "make targ from sym");
37 # Now update targ; in all cases targ should be up to date.
38 &touch('targ');
39 run_make_test(undef, '', "#MAKE#: `targ' is up to date.");
40 run_make_test(undef, '-L', "#MAKE#: `targ' is up to date.");
42 # Add in a new link between sym and dep. Be sure it's newer than targ.
48 # With -L, it should update targ
49 run_make_test(undef, '', "#MAKE#: `targ' is up to date.");
50 run_make_test(undef, '-L', "make targ from sym");
52 rmfiles('targ', 'dep', 'sym', 'dep1');
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');