edit metadata

This commit is contained in:
2025-02-12 15:01:15 +01:00
parent 341b6ed46f
commit 1ce84ebc53
43 changed files with 214 additions and 207 deletions

View File

@@ -1,6 +1,6 @@
---
title: "Makefile Graphs"
tags: [ "system", "makefiles", "graph" ]
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`).

View File

@@ -1,6 +1,6 @@
---
title: "Makefiles"
tags: [ "system", "makefiles", "help" ]
tags: [ "system", "make", "help" ]
---
Make your first target 'help' to give an overview of the main targets.

View File

@@ -1,7 +1,7 @@
---
title: "Makefile Patterns"
tags: [ "system", "makefiles" ]
tags: [ "system", "make" ]
---
Using the [basic example](../Makefile.md), you can make a complete backup of all backup files.
@@ -27,7 +27,6 @@ backups/backup.tgz: backups/backup_29.md backups/backup_30.md
tar czf backups/backup.tgz backups/backup_29.md backups/backup_30.md
```
The phony `backup` target should now point to this tar backup.