Lines Matching refs:foo
20 .INTERMEDIATE: foo.e bar.e
26 foo.d: foo.e
29 foo.c: foo.e bar.e; cat $^ > $@
36 &utouch(-20, 'foo.f', 'bar.f');
38 &run_make_with_options($makefile,'foo.d',&get_logfile);
39 $answer = "cp foo.f foo.e\ncp foo.e foo.d\nrm foo.e\n";
44 &run_make_with_options($makefile,'foo.d',&get_logfile);
45 $answer = "$make_name: `foo.d' is up to date.\n";
50 &utouch(-10, 'foo.d');
51 &touch('foo.f');
53 &run_make_with_options($makefile,'foo.d',&get_logfile);
54 $answer = "cp foo.f foo.e\ncp foo.e foo.d\nrm foo.e\n";
59 &run_make_with_options($makefile,'foo.c',&get_logfile);
60 $answer = "cp foo.f foo.e\ncp bar.f bar.e\ncat foo.e bar.e > foo.c\nrm bar.e foo.e\n";
65 &run_make_with_options($makefile,'foo.c',&get_logfile);
66 $answer = "$make_name: `foo.c' is up to date.\n";
71 &utouch(-10, 'foo.c');
72 &touch('foo.f');
74 &run_make_with_options($makefile,'foo.c',&get_logfile);
75 $answer = "cp foo.f foo.e\ncp bar.f bar.e\ncat foo.e bar.e > foo.c\nrm bar.e foo.e\n";
80 &run_make_with_options($makefile,'foo.e',&get_logfile);
81 $answer = "cp foo.f foo.e\n";
84 unlink('foo.f', 'foo.e', 'foo.d', 'foo.c', 'bar.f', 'bar.e', 'bar.d', 'bar.c');
93 all: foo
94 foo.a: ; touch $@
96 .INTERMEDIATE: foo.a
102 $answer = "touch foo.a\ntouch foo\nrm foo.a\n";
105 unlink('foo');