| 1215 | Ce fichier est produit par [https://graphviz.org/ Graphviz] à partir du fichier `makefile.dot` et la commande `dot -T png Makefile.dot -oMakefile.png` |
| 1216 | {{{ |
| 1217 | digraph G { |
| 1218 | node [shape=box color=brown] |
| 1219 | gcc1[label="gcc -c"]; |
| 1220 | gcc2[label="gcc -c"]; |
| 1221 | gcc3[label="gcc -c"]; |
| 1222 | gcc4[label="gcc -c"]; |
| 1223 | ld[label="ld"]; |
| 1224 | node [shape=ellipse color=blue] |
| 1225 | "hcpua.S" , "hcpu.h" -> gcc1 -> "obj/hcpua.o" -> ld -> "kernel.x" |
| 1226 | "kinit.c" , "klibc.h" , "harch.h" , "hcpu.h" -> gcc2 -> "obj/kinit.o" -> ld |
| 1227 | "klibc.c" , "klibc.h" , "harch.h" , "hcpu.h" -> gcc3 -> "obj/klibc.o" -> ld |
| 1228 | "harch.c" , "klibc.h" , "harch.h" , "hcpu.h" -> gcc4 -> "obj/harch.o" -> ld |
| 1229 | }}} |
| 1230 | ''''''''''''''' |
| 1231 | }}} |
| 1232 | |