summaryrefslogtreecommitdiffstats
path: root/Documentation/technotes/2020-03-unit-testing-coreboot.md
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/technotes/2020-03-unit-testing-coreboot.md')
-rw-r--r--Documentation/technotes/2020-03-unit-testing-coreboot.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/technotes/2020-03-unit-testing-coreboot.md b/Documentation/technotes/2020-03-unit-testing-coreboot.md
index a4d283f693c4..d95b1a00dbd7 100644
--- a/Documentation/technotes/2020-03-unit-testing-coreboot.md
+++ b/Documentation/technotes/2020-03-unit-testing-coreboot.md
@@ -247,13 +247,13 @@ tests/lib/string-test and tests/device/i2c-test:
│ ├── include
│ │ ├── mocks <- mock headers, which replace original headers
│ │
-│ ├── Makefile.inc <- top Makefile for unit tests subsystem
+│ ├── Makefile.mk <- top Makefile for unit tests subsystem
│ ├── lib
-│ │ ├── Makefile.inc
+│ │ ├── Makefile.mk
│ │ ├── string-test.c <- test code for src/lib/string.c
│ │ │
│ ├── device
-│ │ ├── Makefile.inc
+│ │ ├── Makefile.mk
│ ├── i2c-test.c
├── build