File: tup_dag_3.dot

package info (click to toggle)
tup 0.7.8-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 18,448 kB
  • sloc: ansic: 217,845; sh: 17,432; perl: 184; python: 67; lisp: 63; makefile: 62
file content (23 lines) | stat: -rw-r--r-- 721 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
digraph g {
	main_o [label="main.o"];
	parse_o [label="parse.o"];
	parse_c [label="parse.c"];
	parse_h [label="parse.h"];
	parse_y [label="parse.y"];
	main_c [label="main.c"];
	prog [label="prog"];

	link [label="gcc main.o parse.o -o prog", shape="rectangle"];
	cmain [label="gcc -c main.c -o main.o", shape="rectangle"];
	cparse [label="gcc -c parse.c -o parse.o", shape="rectangle"];
	bison [label="bison -blah parse.y", shape="rectangle"];

	prog -> link [dir=back];
	link -> {main_o parse_o} [dir=back];
	main_o -> cmain [dir=back];
	parse_o -> cparse [dir=back];
	cmain -> {main_c parse_h} [dir=back];
	cparse -> {parse_c parse_h} [dir=back];
	{parse_h parse_c} -> bison [dir=back];
	bison -> parse_y [dir=back];
}