From 1338e545eeeeb6a1807b33f000abff6869bc3c3d Mon Sep 17 00:00:00 2001 From: Igor Bogoslavskyi Date: Fri, 22 Sep 2023 17:46:44 +0200 Subject: [PATCH] Change dead link --- lectures/build_systems.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/build_systems.md b/lectures/build_systems.md index c3a5f3d..c64ccc5 100644 --- a/lectures/build_systems.md +++ b/lectures/build_systems.md @@ -108,7 +108,7 @@ int main() { - Can have many targets with many dependencies - If `target` **file** exists and is **not older** than its `dependencies` --- **nothing happens**! - :bulb: This allows us to **avoid doing the work twice**! -- :bulb: A very good `make` tutorial: https://makefiletutorial.com +- :bulb: A very good `make` tutorial is [here](https://web.archive.org/web/20230826174108/https://makefiletutorial.com/) --- # A [`Makefile`](code/make/simple_build/Makefile) to build C++ code