make all file names lowercase

This commit is contained in:
2025-08-14 06:35:44 +02:00
parent 33a959fcea
commit a55712032b
13 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
---
title: "Makefile Graphs"
tags: [ "system", "make", "graph" ]
---
If you have `graph-easy` (often in the package `perl-graph-easy` or similar), you can make a graph from the makefile with `make2graph` (the package is often called `makefile2graph`).
Start with the command to 'make all targets' (`-B`), and 'do a dummy run' (`-n`) with debug into (`-d`):
```bash
make -Bnd
make -Bnd | make2graph
make -Bnd | make2graph | graph-easy --boxart
```